diff --git a/ChangeLog.txt b/ChangeLog.txt
index 7d62bb165097..ed1ca47be935 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -59,9 +59,21 @@
* Set-AzureApplicationGatewaySslCertificate
* Get-AzureApplicationGatewaySslCertificate
* Remove-AzureApplicationGatewaySslCertificate
-*Azure Network cmdlets
- * Reserved IP cmdlets (New-AzureReservedIP, Get-AzureReservedIP, Set-AzureReservedIPAssociation, Remove-AzureReservedIPAssociation) fixed to support -VirtualIPName parameter
- * Multivip Cmdlets (Add-AzureVirtualIP, Remove-AzureVirtualIP) fixed to support -VirtualIPName parameter
+ * Fixed minor bugs AzureLoadbalancer
+ * Renamed Get-AzureCheckDnsAvailablity to Test-AzureDnsAvailability
+ * Added cmdlets to RouteTables and Routes
+ * New-AzureRouteTable
+ * Get-AzureRouteTable
+ * Set-AzureRouteTable
+ * Remove-AzureRouteTable
+ * New-AzureRouteConfig
+ * Add-AzureRouteConfig
+ * Set-AzureRouteConfig
+ * Get-AzureRouteConfig
+ * Remove-AzureRouteConfig
+ *Azure Network cmdlets
+ * Reserved IP cmdlets (New-AzureReservedIP, Get-AzureReservedIP, Set-AzureReservedIPAssociation, Remove-AzureReservedIPAssociation) fixed to support -VirtualIPName parameter
+ * Multivip Cmdlets (Add-AzureVirtualIP, Remove-AzureVirtualIP) fixed to support -VirtualIPName parameter
2015.07.10 version 1.0.0
* Azure Backup cmdlets
@@ -111,6 +123,12 @@
* Get-AzureSqlDatabaseRestorePoints
* Changed cmdlets:
* New-AzureSqlDatabase - Can now create Azure Sql Data Warehouse databases
+* Azure Recovery Services
+ * Fixed Storage and Network mapping issues
+ * Added encryption support for failover changes
+ * Added Delete vault support
+ * Provisioned to update VM properties
+ * Few bug fixes
2015.06.05 version 0.9.3
* Fixed bug in Websites cmdlets related to slots #454
diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi
index ef6737be3aae..164ea55967f4 100644
--- a/setup/azurecmdfiles.wxi
+++ b/setup/azurecmdfiles.wxi
@@ -3089,6 +3089,9 @@
+
+
+
@@ -5052,6 +5055,7 @@
+
diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj
index 641172d10420..dcea477b96fe 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj
+++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj
@@ -66,7 +66,7 @@
False
..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll
-
+
..\..\..\packages\Microsoft.Azure.Management.Network.2.0.8-preview\lib\net40\Microsoft.Azure.Management.Network.dll
True
@@ -142,8 +142,9 @@
+
-
+
@@ -167,10 +168,13 @@
Always
+
+ Always
+
Always
-
+
Always
@@ -190,11 +194,7 @@
Always
-
-
- Always
-
-
+
Always
@@ -230,6 +230,9 @@
Always
+
+ Always
+
Always
@@ -251,6 +254,21 @@
Always
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
Always
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs
index c211c55f1722..dd3a2dcf91d8 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.cs
@@ -60,5 +60,12 @@ public void TestNetworkInterfaceIDns()
{
NetworkResourcesController.NewInstance.RunPsTest("Test-NetworkInterfaceIDns");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestNetworkInterfaceEnableIPForwarding()
+ {
+ NetworkResourcesController.NewInstance.RunPsTest("Test-NetworkInterfaceEnableIPForwarding");
+ }
}
}
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1
index ffade9bda675..48c694f33434 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkInterfaceTests.ps1
@@ -422,7 +422,74 @@ function Test-NetworkInterfaceIDns
Assert-AreEqual "Dynamic" $expectedNic.IpConfigurations[0].PrivateIpAllocationMethod
Assert-AreEqual "idnstest" $expectedNic.DnsSettings.InternalDnsNameLabel
Assert-Null $expectedNic.DnsSettings.InternalFqdn
+
+ # Delete NetworkInterface
+ $delete = Remove-AzureNetworkInterface -ResourceGroupName $rgname -name $nicName -PassThru -Force
+ Assert-AreEqual true $delete
+
+ $list = Get-AzureNetworkInterface -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Tests creating new simple public networkinterface with Idns.
+#>
+function Test-NetworkInterfaceEnableIPForwarding
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $vnetName = Get-ResourceName
+ $subnetName = Get-ResourceName
+ $publicIpName = Get-ResourceName
+ $nicName = Get-ResourceName
+ $domainNameLabel = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement
+ $resourceTypeParent = "Microsoft.Network/networkInterfaces"
+
+ $location = Get-ProviderLocation $resourceTypeParent
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"}
+
+ # Create the Virtual Network
+ $subnet = New-AzureVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24
+ $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet
+
+ # Create NetworkInterface
+ $actualNic = New-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname -Location $location -Subnet $vnet.Subnets[0] -EnableIPForwarding
+ $expectedNic = Get-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname
+
+ Assert-AreEqual $expectedNic.ResourceGroupName $actualNic.ResourceGroupName
+ Assert-AreEqual $expectedNic.Name $actualNic.Name
+ Assert-AreEqual $expectedNic.Location $actualNic.Location
+ Assert-AreEqual "Succeeded" $expectedNic.ProvisioningState
+ Assert-AreEqual $expectedNic.IpConfigurations[0].Name $actualNic.IpConfigurations[0].Name
+ Assert-AreEqual $expectedNic.IpConfigurations[0].PublicIpAddress.Id $actualNic.IpConfigurations[0].PublicIpAddress.Id
+ Assert-AreEqual $expectedNic.IpConfigurations[0].Subnet.Id $actualNic.IpConfigurations[0].Subnet.Id
+ Assert-NotNull $expectedNic.IpConfigurations[0].PrivateIpAddress
+ Assert-AreEqual true $expectedNic.EnableIPForwarding
+
+ # Create NetworkInterface without IPForwarding
+ $nic = New-AzureNetworkInterface -Name $nicName -ResourceGroupName $rgname -Location $location -Subnet $vnet.Subnets[0] -Force
+ Assert-AreEqual $expectedNic.Name $nic.Name
+ Assert-AreEqual false $nic.EnableIPForwarding
+
+ # set nic
+ $nic.EnableIPForwarding = $true
+ $nic = $nic | Set-AzureNetworkInterface
+ Assert-AreEqual $expectedNic.Name $nic.Name
+ Assert-AreEqual true $nic.EnableIPForwarding
+
# Delete NetworkInterface
$delete = Remove-AzureNetworkInterface -ResourceGroupName $rgname -name $nicName -PassThru -Force
Assert-AreEqual true $delete
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs
new file mode 100644
index 000000000000..af2a75a9e0f3
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.cs
@@ -0,0 +1,51 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.WindowsAzure.Commands.ScenarioTest;
+using Xunit;
+
+namespace Commands.Network.Test.ScenarioTests
+{
+ public class RouteTableTests
+ {
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestEmptyRouteTable()
+ {
+ NetworkResourcesController.NewInstance.RunPsTest("Test-EmptyRouteTable");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRouteTableCRUD()
+ {
+ NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableCRUD");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRouteTableSubnetRef()
+ {
+ NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableSubnetRef");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRouteTableRouteCRUD()
+ {
+ NetworkResourcesController.NewInstance.RunPsTest("Test-RouteTableRouteCRUD");
+ }
+
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1
new file mode 100644
index 000000000000..974cc925b8f4
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/RouteTableTests.ps1
@@ -0,0 +1,316 @@
+# ----------------------------------------------------------------------------------
+#
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Tests Empty RouteTable.
+#>
+function Test-EmptyRouteTable
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $routeTableName = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement
+ $resourceTypeParent = "Microsoft.Network/routeTables"
+ $location = Get-ProviderLocation $resourceTypeParent
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"}
+
+ # Create RouteTable
+ $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location
+
+ # Get RouteTable
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName
+
+ #verification
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 0 @($getRT.Routes).Count
+
+ # list
+ $list = Get-AzureRouteTable -ResourceGroupName $rgname
+ Assert-AreEqual 1 @($list).Count
+ Assert-AreEqual $list[0].ResourceGroupName $getRT.ResourceGroupName
+ Assert-AreEqual $list[0].Name $getRT.Name
+ Assert-AreEqual $list[0].Etag $getRT.Etag
+ Assert-AreEqual @($list[0].Routes).Count @($getRT.Routes).Count
+
+ # Delete NetworkSecurityGroup
+ $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force
+ Assert-AreEqual true $delete
+
+ $list = Get-AzureRouteTable -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Tests RouteTable CRUD.
+#>
+function Test-RouteTableCRUD
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $routeTableName = Get-ResourceName
+ $domainNameLabel = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement
+ $resourceTypeParent = "Microsoft.Network/routeTables"
+ $location = Get-ProviderLocation $resourceTypeParent
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"}
+
+ $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance"
+
+ # Create RouteTable
+ $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1
+
+ # Get RouteTable
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName
+
+ #verification
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 1 @($getRT.Routes).Count
+ Assert-AreEqual $getRT.Routes[0].Name "route1"
+ Assert-AreEqual $getRT.Routes[0].AddressPrefix "192.168.1.0/24"
+ Assert-AreEqual $getRT.Routes[0].NextHopIpAddress "23.108.1.1"
+ Assert-AreEqual $getRT.Routes[0].NextHopType "VirtualAppliance"
+ Assert-NotNull $getRT.Routes[0].Etag
+
+ # list
+ $list = Get-AzureRouteTable -ResourceGroupName $rgname
+ Assert-AreEqual 1 @($list).Count
+ Assert-AreEqual $list[0].ResourceGroupName $getRT.ResourceGroupName
+ Assert-AreEqual $list[0].Name $getRT.Name
+ Assert-AreEqual $list[0].Etag $getRT.Etag
+ Assert-AreEqual @($list[0].Routes).Count @($getRT.Routes).Count
+ Assert-AreEqual $list[0].Routes[0].Etag $getRT.Routes[0].Etag
+
+ $route2 = New-AzureRouteConfig -name "route2" -AddressPrefix "192.168.2.0/24" -NextHopType "VnetLocal"
+
+ # Add a route table
+ $getRT = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1,$route2 -Force
+
+ #verification
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 2 @($getRT.Routes).Count
+ Assert-AreEqual $getRT.Routes[0].Name "route1"
+ Assert-AreEqual $getRT.Routes[1].Name "route2"
+ Assert-AreEqual $getRT.Routes[1].AddressPrefix "192.168.2.0/24"
+ Assert-null $getRT.Routes[1].NextHopIpAddress
+ Assert-AreEqual $getRT.Routes[1].NextHopType "VnetLocal"
+ Assert-NotNull $getRT.Routes[1].Etag
+
+ # Remove a route table
+ $getRT = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route2 -Force
+
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 1 @($getRT.Routes).Count
+ Assert-AreEqual $getRT.Routes[0].Name "route2"
+
+ # Delete NetworkSecurityGroup
+ $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force
+ Assert-AreEqual true $delete
+
+ $list = Get-AzureRouteTable -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Tests RouteTable Subnet CRUD
+#>
+function Test-RouteTableSubnetRef
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $routeTableName = Get-ResourceName
+ $vnetName = Get-ResourceName
+ $subnetName = Get-ResourceName
+ $domainNameLabel = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement
+ $resourceTypeParent = "Microsoft.Network/routeTables"
+ $location = Get-ProviderLocation $resourceTypeParent
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"}
+
+ $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance"
+
+ # Create RouteTable
+ $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1
+
+ # Get RouteTable
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName
+
+ #verification
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 1 @($getRT.Routes).Count
+ Assert-AreEqual $getRT.Routes[0].Name "route1"
+
+ # create vnet and subnet associated to a Routetable
+ # Create the Virtual Network
+ $subnet = New-AzureVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24 -RouteTable $getRT
+ $vnet = New-AzurevirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -DnsServer 8.8.8.8 -Subnet $subnet
+
+ # Verify RouteTable reference in subnet
+ Assert-AreEqual $vnet.Subnets[0].RouteTable.Id $getRT.Id
+
+ # Verify subnet reference in Routetable
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName
+ Assert-AreEqual 1 @($getRT.Subnets).Count
+ Assert-AreEqual $vnet.Subnets[0].Id $getRT.Subnets[0].Id
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Tests RouteTable Route CRUD
+#>
+function Test-RouteTableRouteCRUD
+{
+ # Setup
+ $rgname = Get-ResourceGroupName
+ $routeTableName = Get-ResourceName
+ $vnetName = Get-ResourceName
+ $subnetName = Get-ResourceName
+ $domainNameLabel = Get-ResourceName
+ $rglocation = Get-ProviderLocation ResourceManagement
+ $resourceTypeParent = "Microsoft.Network/routeTables"
+ $location = Get-ProviderLocation $resourceTypeParent
+
+ try
+ {
+ # Create the resource group
+ $resourceGroup = New-AzureResourceGroup -Name $rgname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"}
+
+ $route1 = New-AzureRouteConfig -name "route1" -AddressPrefix "192.168.1.0/24" -NextHopIpAddress "23.108.1.1" -NextHopType "VirtualAppliance"
+
+ # Create RouteTable
+ $rt = New-AzureRouteTable -name $routeTableName -ResourceGroupName $rgname -Location $location -Route $route1
+
+ # Get RouteTable
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName
+
+ #verification
+ Assert-AreEqual $rgName $getRT.ResourceGroupName
+ Assert-AreEqual $routeTableName $getRT.Name
+ Assert-NotNull $getRT.Etag
+ Assert-AreEqual 1 @($getRT.Routes).Count
+ Assert-AreEqual $getRT.Routes[0].Name "route1"
+
+ # get route
+ $route = $getRT | Get-AzureRouteConfig -name "route1"
+ Assert-AreEqual $route.Name "route1"
+ Assert-AreEqual $getRT.Routes[0].Name $route.Name
+ Assert-AreEqual $getRT.Routes[0].AddressPrefix $route.AddressPrefix
+ Assert-AreEqual $getRT.Routes[0].NextHopType $route.NextHopType
+ Assert-AreEqual $getRT.Routes[0].NextHopIpAddress $route.NextHopIpAddress
+
+ # Add a Route
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Add-AzureRouteConfig -name "route2" -AddressPrefix "192.168.2.0/24" -NextHopType "VnetLocal" | Set-AzureRouteTable
+
+ # get route
+ $route = $getRT | Get-AzureRouteConfig -name "route2"
+
+ #verification
+ Assert-AreEqual 2 @($getRT.Routes).Count
+ Assert-AreEqual $route.Name "route2"
+ Assert-AreEqual $getRT.Routes[1].Name $route.Name
+ Assert-AreEqual $getRT.Routes[1].AddressPrefix $route.AddressPrefix
+ Assert-AreEqual $route.AddressPrefix "192.168.2.0/24"
+ Assert-AreEqual $getRT.Routes[1].NextHopType $route.NextHopType
+ Assert-AreEqual $route.NextHopType "VnetLocal"
+ Assert-Null $route.NextHopIpAddress
+ Assert-Null $getRT.Routes[1].NextHopIpAddress
+
+ # list route
+ $list = $getRT | Get-AzureRouteConfig
+ Assert-AreEqual 2 @($list).Count
+ Assert-AreEqual $list[1].Name "route2"
+ Assert-AreEqual $list[1].Name $route.Name
+ Assert-AreEqual $list[1].AddressPrefix $route.AddressPrefix
+ Assert-AreEqual $list[1].NextHopType $route.NextHopType
+ Assert-Null $list[1].NextHopIpAddress
+
+ # set route
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Set-AzureRouteConfig -name "route2" -AddressPrefix "192.168.3.0/24" -NextHopType "VnetLocal" | Set-AzureRouteTable
+
+ # get route
+ $route = $getRT | Get-AzureRouteConfig -name "route2"
+
+ #verification
+ Assert-AreEqual 2 @($getRT.Routes).Count
+ Assert-AreEqual $route.Name "route2"
+ Assert-AreEqual $getRT.Routes[1].Name $route.Name
+ Assert-AreEqual $route.AddressPrefix "192.168.3.0/24"
+ Assert-AreEqual $getRT.Routes[1].AddressPrefix $route.AddressPrefix
+ Assert-AreEqual $getRT.Routes[1].NextHopType $route.NextHopType
+ Assert-Null $route.NextHopIpAddress
+ Assert-Null $getRT.Routes[1].NextHopIpAddress
+
+ # Delete route
+ $getRT = Get-AzureRouteTable -name $routeTableName -ResourceGroupName $rgName | Remove-AzureRouteConfig -name "route1" | Set-AzureRouteTable
+
+ # list route
+ $list = $getRT | Get-AzureRouteConfig
+ Assert-AreEqual 1 @($list).Count
+ Assert-AreEqual $list[0].Name "route2"
+
+ # Delete NetworkSecurityGroup
+ $delete = Remove-AzureRouteTable -ResourceGroupName $rgname -name $routeTableName -PassThru -Force
+ Assert-AreEqual true $delete
+
+ $list = Get-AzureRouteTable -ResourceGroupName $rgname
+ Assert-AreEqual 0 @($list).Count
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs
similarity index 84%
rename from src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs
rename to src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs
index 7b833cb5355a..ce5f5cbc275c 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.cs
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.cs
@@ -17,13 +17,13 @@
namespace Commands.Network.Test.ScenarioTests
{
- public class CheckDnsAvailabilityTest
+ public class TestDnsAvailabilityTest
{
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void TestCheckDnsAvailability()
+ public void TestDnsAvailability()
{
- NetworkResourcesController.NewInstance.RunPsTest("Test-CheckDnsAvailability");
+ NetworkResourcesController.NewInstance.RunPsTest("Test-DnsAvailability");
}
}
}
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1
similarity index 70%
rename from src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1
rename to src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1
index 2b2455cc7527..d6202d507185 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/CheckDnsAvailabilityTest.ps1
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/TestDnsAvailabilityTest.ps1
@@ -14,14 +14,16 @@
<#
.SYNOPSIS
-Tests creating new simple virtualNetwork.
+Tests Test-AzureDnsAvailability command
#>
-function Test-CheckDnsAvailability
+function Test-DnsAvailability
{
# Setup
$domainQualifiedName = Get-ResourceName
-
+ $resourceTypeParent = "Microsoft.Network/publicIPAddresses"
+ $location = Get-ProviderLocation $resourceTypeParent
+
# Checkdnsavailability
- $checkdnsavailabilityStatus = Get-AzureCheckDnsAvailability -Location "westus" -DomainQualifiedName $domainQualifiedName
- Assert-AreEqual $checkdnsavailabilityStatus.DnsNameAvailability true
+ $checkdnsavailability = Test-AzureDnsAvailability -Location "westus" -DomainQualifiedName $domainQualifiedName
+ Assert-AreEqual $checkdnsavailability true
}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json
deleted file mode 100644
index 80524a01fc00..000000000000
--- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CheckDnsAvailabilityTest/TestCheckDnsAvailability.json
+++ /dev/null
@@ -1,64 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/CheckDnsNameAvailability?domainNameLabel=onesdk2418&api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL0NoZWNrRG5zTmFtZUF2YWlsYWJpbGl0eT9kb21haW5OYW1lTGFiZWw9b25lc2RrMjQxOCZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"available\": true\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "25"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "0aac8c2c-947f-4d67-86f4-493bc094f0ac"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31961"
- ],
- "x-ms-correlation-request-id": [
- "12a24d0f-40ba-44f9-9925-8fc45ecf0f12"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150417T223259Z:12a24d0f-40ba-44f9-9925-8fc45ecf0f12"
- ],
- "Date": [
- "Fri, 17 Apr 2015 22:32:58 GMT"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {
- "Test-CheckDnsAvailability": [
- "onesdk2418"
- ]
- },
- "Variables": {
- "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80"
- }
-}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json
new file mode 100644
index 000000000000..6609f202e613
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkInterfaceTests/TestNetworkInterfaceEnableIPForwarding.json
@@ -0,0 +1,2062 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "77246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "cc7599c0-f3db-4262-bec9-73184e7f1c26"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc7599c0-f3db-4262-bec9-73184e7f1c26"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011657Z:cc7599c0-f3db-4262-bec9-73184e7f1c26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "77246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "9b188ee7-ba6d-4c6e-81b2-cbacd61354f7"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b188ee7-ba6d-4c6e-81b2-cbacd61354f7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011658Z:9b188ee7-ba6d-4c6e-81b2-cbacd61354f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "100"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "3f49142d-3ce3-4031-96d2-2ff237db537c"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f49142d-3ce3-4031-96d2-2ff237db537c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011658Z:3f49142d-3ce3-4031-96d2-2ff237db537c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:57 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "00b3073c-e56b-435d-9e63-8b2d1ee1f047"
+ ],
+ "x-ms-correlation-request-id": [
+ "00b3073c-e56b-435d-9e63-8b2d1ee1f047"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011743Z:00b3073c-e56b-435d-9e63-8b2d1ee1f047"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:43 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42\",\r\n \"name\": \"onesdk42\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "198"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "9a61bcd9-235b-4a0a-b2df-e78ace57aea0"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a61bcd9-235b-4a0a-b2df-e78ace57aea0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011659Z:9a61bcd9-235b-4a0a-b2df-e78ace57aea0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:58 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "d7a7ac2e-2179-4098-ad40-408a45917329"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7a7ac2e-2179-4098-ad40-408a45917329"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011659Z:d7a7ac2e-2179-4098-ad40-408a45917329"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:5311beed-0357-4e2a-a27d-20bb43900e10"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8219885-3ca0-4d11-9f7f-0347f6fce296"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011659Z:a8219885-3ca0-4d11-9f7f-0347f6fce296"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:16:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk1117' under resource group 'onesdk42' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "156"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2dfd881c-faa1-4e83-940a-553c65f270b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "2dfd881c-faa1-4e83-940a-553c65f270b2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011701Z:2dfd881c-faa1-4e83-940a-553c65f270b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:01 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk1117\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117\",\r\n \"etag\": \"W/\\\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk4851\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\",\r\n \"etag\": \"W/\\\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3b271301-a2fb-49ac-bf9c-d2303079be54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"c887ac7c-e2f5-4e0a-90c2-106935c4a1f2\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "3abd900a-08cc-4a6c-a37c-984baa98b730"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011714Z:3abd900a-08cc-4a6c-a37c-984baa98b730"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualnetworks/onesdk1117?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvb25lc2RrMTExNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"onesdk4851\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk1117\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "409"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk1117\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117\",\r\n \"etag\": \"W/\\\"78f6ec36-0e4d-4809-8919-d74beadded38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk4851\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\",\r\n \"etag\": \"W/\\\"78f6ec36-0e4d-4809-8919-d74beadded38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "838"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5d4eed36-89f0-4770-8fe9-301635dd0b34"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cefa057-c03d-4cae-9815-3206387d02a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011702Z:8cefa057-c03d-4cae-9815-3206387d02a8"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:02 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzVkNGVlZDM2LTg5ZjAtNDc3MC04ZmU5LTMwMTYzNWRkMGIzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8ccdc485-6165-4fbf-9f1e-c78b5ec49821"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d122267-0e16-4a59-836e-c1efa38d8bf8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011703Z:5d122267-0e16-4a59-836e-c1efa38d8bf8"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/5d4eed36-89f0-4770-8fe9-301635dd0b34?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzVkNGVlZDM2LTg5ZjAtNDc3MC04ZmU5LTMwMTYzNWRkMGIzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "497acc45-bc26-479b-86c9-acabae8a06d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c1e7551-e38f-45f1-85de-7ec94c115744"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011713Z:0c1e7551-e38f-45f1-85de-7ec94c115744"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/onesdk3311' under resource group 'onesdk42' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "158"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8ccd2742-e626-4d40-bcf9-1a09c1015ba3"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ccd2742-e626-4d40-bcf9-1a09c1015ba3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011714Z:8ccd2742-e626-4d40-bcf9-1a09c1015ba3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:13 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "68544492-6415-4847-a077-b67d79bf559d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "4010725e-0999-41f2-9cfa-012ea75d6641"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011719Z:4010725e-0999-41f2-9cfa-012ea75d6641"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "594233a8-c807-433d-bb7e-7c20d2563bbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "03f06bd2-74b5-4ff1-9cce-41893ab2d83e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011720Z:03f06bd2-74b5-4ff1-9cce-41893ab2d83e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9e3a4c9e-14c3-4660-b208-25e533bdbfb8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f3005a4c-b542-4508-b06f-dc58ad7de09a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "474f88d0-0d66-4ae2-9306-768d3993dd77"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011720Z:474f88d0-0d66-4ae2-9306-768d3993dd77"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1086"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3d8f5ddc-5c5e-43b8-8252-f5caae996611"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b484b05-0215-4aba-9f21-2dc82ac91a2c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011740Z:2b484b05-0215-4aba-9f21-2dc82ac91a2c"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1086"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "28ecf00e-dbe6-4f1e-8e1f-d28b2c49481e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "4068f2e8-1b8a-4cb6-8ab8-030216fc265c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011741Z:4068f2e8-1b8a-4cb6-8ab8-030216fc265c"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1086"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ca665ce2-a641-4b20-93b9-c941a5a6b46c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"5e786e95-314e-4579-9b0d-cca0408b7828\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f9139f3-f282-4ae4-8425-4f2affd75749"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011741Z:6f9139f3-f282-4ae4-8425-4f2affd75749"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "069ad9a7-2d5d-4737-876b-54edbdacf35d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "61568919-6f31-4178-9545-b859d22d41c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011742Z:61568919-6f31-4178-9545-b859d22d41c0"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "661"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f3005a4c-b542-4508-b06f-dc58ad7de09a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d1c055b7-2282-498f-8dac-5818c5cf97d7"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/d1c055b7-2282-498f-8dac-5818c5cf97d7?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d3356bb-3c6e-409e-877e-3c713028cba6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011719Z:4d3356bb-3c6e-409e-877e-3c713028cba6"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:18 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "662"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1086"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dd7b96c2-b68e-499a-a48a-f9bd99fa8958"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/dd7b96c2-b68e-499a-a48a-f9bd99fa8958?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "76e28f3e-c12a-4c3a-aeba-c6aae6824e3b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011740Z:76e28f3e-c12a-4c3a-aeba-c6aae6824e3b"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig1\",\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false,\r\n \"enableIPForwarding\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"5e786e95-314e-4579-9b0d-cca0408b7828\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"name\": \"onesdk3311\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westeurope\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "1316"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3311\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b0ef8ae9-056e-46df-af16-2ff73a853dc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/virtualNetworks/onesdk1117/subnets/onesdk4851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": true\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1085"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "45323994-bfb1-4ef2-ab3f-18244234c870"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45323994-bfb1-4ef2-ab3f-18244234c870?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d246d10-427b-4c46-b7d8-1292219faa3d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011741Z:2d246d10-427b-4c46-b7d8-1292219faa3d"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/d1c055b7-2282-498f-8dac-5818c5cf97d7?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2QxYzA1NWI3LTIyODItNDk4Zi04ZGFjLTU4MThjNWNmOTdkNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b0bb855b-17d6-41f0-ba84-ec726db1b558"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "02af0b1f-17b3-4087-9484-efc71594a8b3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011719Z:02af0b1f-17b3-4087-9484-efc71594a8b3"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/dd7b96c2-b68e-499a-a48a-f9bd99fa8958?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2RkN2I5NmMyLWI2OGUtNDk5YS1hNDhhLWY5YmQ5OWZhODk1OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6a776992-72af-40bc-9d24-4fbd060bba2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecea2aac-f8f9-46db-bef3-90996a64c168"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011740Z:ecea2aac-f8f9-46db-bef3-90996a64c168"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45323994-bfb1-4ef2-ab3f-18244234c870?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzQ1MzIzOTk0LWJmYjEtNGVmMi1hYjNmLTE4MjQ0MjM0Yzg3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d05ff620-0619-4f11-8790-53e96e529267"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "679d3400-b24c-4099-95c4-2c2d204ccc6a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011742Z:679d3400-b24c-4099-95c4-2c2d204ccc6a"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces/onesdk3311?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9vbmVzZGszMzExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "80b661a0-4254-4713-b934-3ef11fcdb148"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "228b3d1d-5add-4188-9f36-f04ee12d4caf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011742Z:228b3d1d-5add-4188-9f36-f04ee12d4caf"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:42 GMT"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/80b661a0-4254-4713-b934-3ef11fcdb148?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzgwYjY2MWEwLTQyNTQtNDcxMy1iOTM0LTNlZjExZmNkYjE0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "befd7249-85df-40da-85b8-150e7cfde53e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d9d02ce-4594-4ca2-ac8c-1cebc96c01e7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011743Z:3d9d02ce-4594-4ca2-ac8c-1cebc96c01e7"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk42/providers/Microsoft.Network/networkInterfaces?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "38"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "affb9b41-6e38-4871-bc54-7bffbfc0c33a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7d1a8ae-33a2-44ec-82da-c8c46ef346cc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011743Z:c7d1a8ae-33a2-44ec-82da-c8c46ef346cc"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk42?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "ee9f9766-d0c3-4510-92bc-5d70c27430bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee9f9766-d0c3-4510-92bc-5d70c27430bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011744Z:ee9f9766-d0c3-4510-92bc-5d70c27430bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "2e8691df-dbdb-4e8d-a526-40b8ceceb8f4"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e8691df-dbdb-4e8d-a526-40b8ceceb8f4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011744Z:2e8691df-dbdb-4e8d-a526-40b8ceceb8f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "2635b9fa-89cf-425b-b229-f89064db9aa8"
+ ],
+ "x-ms-correlation-request-id": [
+ "2635b9fa-89cf-425b-b229-f89064db9aa8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011759Z:2635b9fa-89cf-425b-b229-f89064db9aa8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:17:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-request-id": [
+ "98e50cbb-46f7-4758-9b29-acee4274476d"
+ ],
+ "x-ms-correlation-request-id": [
+ "98e50cbb-46f7-4758-9b29-acee4274476d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011814Z:98e50cbb-46f7-4758-9b29-acee4274476d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:18:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-request-id": [
+ "c40e32d0-65d8-4e03-b51c-3dd1a9c79b91"
+ ],
+ "x-ms-correlation-request-id": [
+ "c40e32d0-65d8-4e03-b51c-3dd1a9c79b91"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011829Z:c40e32d0-65d8-4e03-b51c-3dd1a9c79b91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:18:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-request-id": [
+ "8893c8cf-bc0e-4dab-b449-d67476d3bc6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "8893c8cf-bc0e-4dab-b449-d67476d3bc6b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011844Z:8893c8cf-bc0e-4dab-b449-d67476d3bc6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:18:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "c453d294-b342-4b29-bac2-d33c05112443"
+ ],
+ "x-ms-correlation-request-id": [
+ "c453d294-b342-4b29-bac2-d33c05112443"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011859Z:c453d294-b342-4b29-bac2-d33c05112443"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:18:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "3ba61506-aeae-449d-8f6b-69d04529506c"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ba61506-aeae-449d-8f6b-69d04529506c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011915Z:3ba61506-aeae-449d-8f6b-69d04529506c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:19:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNaTFYUlZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "dc316050-03fb-4b33-81d2-6f184c52401c"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc316050-03fb-4b33-81d2-6f184c52401c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T011930Z:dc316050-03fb-4b33-81d2-6f184c52401c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 01:19:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-NetworkInterfaceEnableIPForwarding": [
+ "onesdk42",
+ "onesdk1117",
+ "onesdk4851",
+ "onesdk8171",
+ "onesdk3311",
+ "onesdk298"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json
new file mode 100644
index 000000000000..5718deb2d9e0
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestEmptyRouteTable.json
@@ -0,0 +1,1113 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "69330168-7305-48c9-842b-981a35c2f727"
+ ],
+ "x-ms-correlation-request-id": [
+ "69330168-7305-48c9-842b-981a35c2f727"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213638Z:69330168-7305-48c9-842b-981a35c2f727"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "9b015f23-de40-4787-94a6-4e9112ceaaeb"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b015f23-de40-4787-94a6-4e9112ceaaeb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213639Z:9b015f23-de40-4787-94a6-4e9112ceaaeb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "a51d9106-0d94-4103-aaf3-de39abd385b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "a51d9106-0d94-4103-aaf3-de39abd385b3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213639Z:a51d9106-0d94-4103-aaf3-de39abd385b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:39 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-request-id": [
+ "42d63a5a-875c-442a-b250-3b6a012e8a91"
+ ],
+ "x-ms-correlation-request-id": [
+ "42d63a5a-875c-442a-b250-3b6a012e8a91"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213647Z:42d63a5a-875c-442a-b250-3b6a012e8a91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:46 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941\",\r\n \"name\": \"onesdk6941\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "202"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "09b78477-3538-472c-a79a-4989705d3c57"
+ ],
+ "x-ms-correlation-request-id": [
+ "09b78477-3538-472c-a79a-4989705d3c57"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213640Z:09b78477-3538-472c-a79a-4989705d3c57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:39 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "dc5cc467-7d92-4290-9263-7c758518fd7b"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc5cc467-7d92-4290-9263-7c758518fd7b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213640Z:dc5cc467-7d92-4290-9263-7c758518fd7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:0447e14f-033e-4f2d-8992-ead359b14100"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b09ef2e-1ac3-4238-98b8-44fe43fd7a37"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213641Z:0b09ef2e-1ac3-4238-98b8-44fe43fd7a37"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk9461' under resource group 'onesdk6941' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "154"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "0db29262-e41e-489b-8415-cc2dda4ae844"
+ ],
+ "x-ms-correlation-request-id": [
+ "0db29262-e41e-489b-8415-cc2dda4ae844"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213642Z:0db29262-e41e-489b-8415-cc2dda4ae844"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:42 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "318"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6a9d5ed0-4e0b-4d13-aa6b-bf3b570f0545"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"65b089fe-9f1c-440c-aafc-c518b474649d\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "001dfd06-db30-46c9-8b88-a9e087d8a293"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213645Z:001dfd06-db30-46c9-8b88-a9e087d8a293"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "318"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4f3f548f-d0d3-49c9-84ef-5628d7209eb5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"65b089fe-9f1c-440c-aafc-c518b474649d\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-correlation-request-id": [
+ "169e4467-811f-4c9d-b741-d9273a281437"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213645Z:169e4467-811f-4c9d-b741-d9273a281437"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9461\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"f0f95bf1-a9db-4c82-8d84-35082a8c8114\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "317"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ba24fdd2-3993-47b3-9b28-eb78f2a264d0"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/ba24fdd2-3993-47b3-9b28-eb78f2a264d0?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "77f6bab4-1639-47ca-8c1b-c5ed2c3a3588"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213644Z:77f6bab4-1639-47ca-8c1b-c5ed2c3a3588"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:43 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/ba24fdd2-3993-47b3-9b28-eb78f2a264d0?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2JhMjRmZGQyLTM5OTMtNDdiMy05YjI4LWViNzhmMmEyNjRkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8b9dd4a3-5f3b-4395-a579-669082543818"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "161b7d69-7aed-4f65-b784-516667f2aa88"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213644Z:161b7d69-7aed-4f65-b784-516667f2aa88"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9461\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461\",\r\n \"etag\": \"W/\\\"65b089fe-9f1c-440c-aafc-c518b474649d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"westeurope\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cb3692c3-ba37-4190-99f9-37c89692ee19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cf8e96d-6450-4dfe-8c03-48fa428d9261"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213645Z:7cf8e96d-6450-4dfe-8c03-48fa428d9261"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "38"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bc86ee95-272b-4492-b126-4a3c77e16467"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7fbb102-c67b-4707-a251-9a91ce0d18a4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213647Z:d7fbb102-c67b-4707-a251-9a91ce0d18a4"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk6941/providers/Microsoft.Network/routeTables/onesdk9461?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazY5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazk0NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "704071ac-d6f2-48cf-8a11-efe21d7a43e0"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c2a0c88-1cf6-404f-b17e-f4a55884da5e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213646Z:6c2a0c88-1cf6-404f-b17e-f4a55884da5e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:45 GMT"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/704071ac-d6f2-48cf-8a11-efe21d7a43e0?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzcwNDA3MWFjLWQ2ZjItNDhjZi04YTExLWVmZTIxZDdhNDNlMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ffeb14bc-6c14-4890-b077-136e57df0718"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0d15117-3079-44f7-b751-fe33ca756512"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213646Z:d0d15117-3079-44f7-b751-fe33ca756512"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk6941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-request-id": [
+ "317e5b34-cdf1-4c9a-b300-5d4db39725d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "317e5b34-cdf1-4c9a-b300-5d4db39725d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213647Z:317e5b34-cdf1-4c9a-b300-5d4db39725d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:46 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "c656bb9f-1970-42e6-b6db-51d76fd62b6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "c656bb9f-1970-42e6-b6db-51d76fd62b6e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213647Z:c656bb9f-1970-42e6-b6db-51d76fd62b6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:36:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-request-id": [
+ "79e1952d-2745-4f54-99dc-3dde37868ad0"
+ ],
+ "x-ms-correlation-request-id": [
+ "79e1952d-2745-4f54-99dc-3dde37868ad0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213703Z:79e1952d-2745-4f54-99dc-3dde37868ad0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:37:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-request-id": [
+ "02762306-2b29-4bba-9a87-cf43cca3284e"
+ ],
+ "x-ms-correlation-request-id": [
+ "02762306-2b29-4bba-9a87-cf43cca3284e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213718Z:02762306-2b29-4bba-9a87-cf43cca3284e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:37:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2OTQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPVFF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-request-id": [
+ "ff9b1bca-b939-4977-915f-7e350bbeb7df"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff9b1bca-b939-4977-915f-7e350bbeb7df"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T213733Z:ff9b1bca-b939-4977-915f-7e350bbeb7df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:37:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-EmptyRouteTable": [
+ "onesdk6941",
+ "onesdk9461"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json
new file mode 100644
index 000000000000..b894e2f76103
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableCRUD.json
@@ -0,0 +1,1682 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-request-id": [
+ "a5f3dbc4-4c78-4e53-94a1-b04b29a43473"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5f3dbc4-4c78-4e53-94a1-b04b29a43473"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215305Z:a5f3dbc4-4c78-4e53-94a1-b04b29a43473"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-request-id": [
+ "5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215306Z:5b8aa64a-e8fc-4cdb-8a1a-d7e414d2e857"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-request-id": [
+ "18863dd5-a6b3-4192-858b-0a982b85f8ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "18863dd5-a6b3-4192-858b-0a982b85f8ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215306Z:18863dd5-a6b3-4192-858b-0a982b85f8ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:06 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "199f0bf6-bc91-44aa-bf7f-57f900cb1e14"
+ ],
+ "x-ms-correlation-request-id": [
+ "199f0bf6-bc91-44aa-bf7f-57f900cb1e14"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215321Z:199f0bf6-bc91-44aa-bf7f-57f900cb1e14"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:21 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979\",\r\n \"name\": \"onesdk4979\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "202"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-request-id": [
+ "bd48ab91-c408-4b75-bd38-e2959edbc80b"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd48ab91-c408-4b75-bd38-e2959edbc80b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215307Z:bd48ab91-c408-4b75-bd38-e2959edbc80b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:06 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "eb91abac-d01f-4874-ac1d-0a84a71b6831"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb91abac-d01f-4874-ac1d-0a84a71b6831"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215307Z:eb91abac-d01f-4874-ac1d-0a84a71b6831"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:e3dd7fc9-c202-4b26-9992-8aa86eceeed0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-correlation-request-id": [
+ "87251a8d-e498-4c7d-af59-dbac1bd35613"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215307Z:87251a8d-e498-4c7d-af59-dbac1bd35613"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk9094' under resource group 'onesdk4979' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "154"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "03a3698c-9163-4d71-bfdf-ad6622dcdb23"
+ ],
+ "x-ms-correlation-request-id": [
+ "03a3698c-9163-4d71-bfdf-ad6622dcdb23"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215310Z:03a3698c-9163-4d71-bfdf-ad6622dcdb23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "613d02f7-a6bd-4b42-8652-3aa12c2a8fb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "420ec5ae-4ba7-4405-8b2d-59b47c764c73"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215314Z:420ec5ae-4ba7-4405-8b2d-59b47c764c73"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "216d0f51-c4c8-46d4-ab97-afe03647f4c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b5d4294-8e9f-45a8-80ac-7f4be0988f8f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215314Z:2b5d4294-8e9f-45a8-80ac-7f4be0988f8f"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8a22e0c1-b46a-4b08-b9fa-02ac49123b09"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"3ba505d7-22e3-46ac-a7f0-757f2660801f\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "8380b5d5-071d-471a-ad5e-89eae9553da2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215315Z:8380b5d5-071d-471a-ad5e-89eae9553da2"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f14770da-286a-40f6-8352-c85cc2494111"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "9730fddc-d135-4100-b78a-8eb015da28d8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215317Z:9730fddc-d135-4100-b78a-8eb015da28d8"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ddf02d4c-7b38-4470-9019-fe14b45ecd67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2a1a569-a113-4199-80d4-15282a11746a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215317Z:c2a1a569-a113-4199-80d4-15282a11746a"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a646e451-bfa5-47ec-a702-cf2c65cfb68e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"1c58f6d6-5b3c-4285-af53-a45f0655f2e4\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-correlation-request-id": [
+ "e992fc5d-7d47-4448-ab40-3defcdbb4198"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215317Z:e992fc5d-7d47-4448-ab40-3defcdbb4198"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "777"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2fc55bc0-3795-41fc-8e5b-636588fb06f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f131a453-d92d-4376-80c4-0b79fc6160c2\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "abf0b83d-a0ec-4ac9-8606-5ccb6b85a2bf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215319Z:abf0b83d-a0ec-4ac9-8606-5ccb6b85a2bf"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"f131a453-d92d-4376-80c4-0b79fc6160c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "777"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3fffa7a2-9d46-4cc6-a5fc-d972b0e48967"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f131a453-d92d-4376-80c4-0b79fc6160c2\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7fc5a70-2dc2-40a8-95b0-faf77cad8815"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215319Z:a7fc5a70-2dc2-40a8-95b0-faf77cad8815"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "388"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"654f0368-297c-45d1-8a77-28fd6a7a127a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"654f0368-297c-45d1-8a77-28fd6a7a127a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "827"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8a8fca0a-795b-4731-aef2-dbfb79b49e9e"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/8a8fca0a-795b-4731-aef2-dbfb79b49e9e?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "725acbd8-f127-473f-8c35-9ed3da19eb52"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215313Z:725acbd8-f127-473f-8c35-9ed3da19eb52"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:13 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "554"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"eac24a0d-6f2c-4097-837c-6243b09353e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "d96c9f90-e200-4926-a897-e7a9aea736a3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215316Z:d96c9f90-e200-4926-a897-e7a9aea736a3"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk9094\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "336"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"73dfad80-3b21-45d9-9822-716c9cfc5d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route2\",\r\n \"etag\": \"W/\\\"73dfad80-3b21-45d9-9822-716c9cfc5d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "775"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "91db11b4-7606-4f36-8217-740d9d748eb9"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/91db11b4-7606-4f36-8217-740d9d748eb9?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0ece418-6a80-4609-bdfe-ca69b19b3334"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215318Z:a0ece418-6a80-4609-bdfe-ca69b19b3334"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/8a8fca0a-795b-4731-aef2-dbfb79b49e9e?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzhhOGZjYTBhLTc5NWItNDczMS1hZWYyLWRiZmI3OWI0OWU5ZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1bcb0569-5811-436e-8bb8-325b7a5fec5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c9a5381-2576-4911-8aef-8a42e3710c7e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215314Z:3c9a5381-2576-4911-8aef-8a42e3710c7e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9094\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094/routes/route1\",\r\n \"etag\": \"W/\\\"3ba505d7-22e3-46ac-a7f0-757f2660801f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "961"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ccdade0d-cb44-4d06-96d2-35fe36390964"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4146d14-0444-42a3-8618-8870437784a2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215315Z:f4146d14-0444-42a3-8618-8870437784a2"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "38"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e6f7da85-9b80-4684-8190-ca02f58e92c5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "5df86e8b-d613-42f1-b224-9b3e6686bb24"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215321Z:5df86e8b-d613-42f1-b224-9b3e6686bb24"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/bf8994f9-ab6d-4f3f-b57e-376cc0d39ca8?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2JmODk5NGY5LWFiNmQtNGYzZi1iNTdlLTM3NmNjMGQzOWNhOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "65e3883f-1624-4150-a22c-5bd119b18493"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d786c52-b0e1-4228-96eb-0b9573aac6f3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215316Z:0d786c52-b0e1-4228-96eb-0b9573aac6f3"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/91db11b4-7606-4f36-8217-740d9d748eb9?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzkxZGIxMWI0LTc2MDYtNGYzNi04MjE3LTc0MGQ5ZDc0OGViOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b06bbb1a-bd42-42b6-bf3d-538efb17e34d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "14198461-8e75-4ce3-b2d9-d6110906f460"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215318Z:14198461-8e75-4ce3-b2d9-d6110906f460"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4979/providers/Microsoft.Network/routeTables/onesdk9094?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazkwOTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9280bb92-33da-4a75-b1d8-3e7668790cf9"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "418ded47-d124-467c-a901-0ae710069183"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215320Z:418ded47-d124-467c-a901-0ae710069183"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:20 GMT"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/9280bb92-33da-4a75-b1d8-3e7668790cf9?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzkyODBiYjkyLTMzZGEtNGE3NS1iMWQ4LTNlNzY2ODc5MGNmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f56fe678-e6d8-4eb1-a8f3-d5b94335f70c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fe7ba33-0410-4dc4-994b-dda7fd00dcfa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215320Z:0fe7ba33-0410-4dc4-994b-dda7fd00dcfa"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4979?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "51abf45e-d730-42f7-b231-307fe056a0c2"
+ ],
+ "x-ms-correlation-request-id": [
+ "51abf45e-d730-42f7-b231-307fe056a0c2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215321Z:51abf45e-d730-42f7-b231-307fe056a0c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:21 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "13d30417-01b3-41bb-9fe8-08f09f86665e"
+ ],
+ "x-ms-correlation-request-id": [
+ "13d30417-01b3-41bb-9fe8-08f09f86665e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215321Z:13d30417-01b3-41bb-9fe8-08f09f86665e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:21 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "bc0472ad-766b-48ee-9a2b-985822c97a6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc0472ad-766b-48ee-9a2b-985822c97a6b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215337Z:bc0472ad-766b-48ee-9a2b-985822c97a6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:36 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-request-id": [
+ "d5788c11-be1b-4741-93e9-82ab8ca93038"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5788c11-be1b-4741-93e9-82ab8ca93038"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215352Z:d5788c11-be1b-4741-93e9-82ab8ca93038"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:53:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTc5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVGM1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "5072aa1c-6ffb-45c4-8f06-7a825134f449"
+ ],
+ "x-ms-correlation-request-id": [
+ "5072aa1c-6ffb-45c4-8f06-7a825134f449"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T215407Z:5072aa1c-6ffb-45c4-8f06-7a825134f449"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 21:54:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RouteTableCRUD": [
+ "onesdk4979",
+ "onesdk9094",
+ "onesdk8609"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json
new file mode 100644
index 000000000000..39ab82aff405
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableRouteCRUD.json
@@ -0,0 +1,1916 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-request-id": [
+ "b6ae7c28-669c-4804-aa7e-05a598075520"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6ae7c28-669c-4804-aa7e-05a598075520"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224042Z:b6ae7c28-669c-4804-aa7e-05a598075520"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "e50fbc8d-b910-4924-926a-9cd20c84cffd"
+ ],
+ "x-ms-correlation-request-id": [
+ "e50fbc8d-b910-4924-926a-9cd20c84cffd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224043Z:e50fbc8d-b910-4924-926a-9cd20c84cffd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-request-id": [
+ "cbc825ad-f114-4ed5-ad6b-4c479206862e"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbc825ad-f114-4ed5-ad6b-4c479206862e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224043Z:cbc825ad-f114-4ed5-ad6b-4c479206862e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:42 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "5476f4db-1389-4afc-98f6-a370c3974ccb"
+ ],
+ "x-ms-correlation-request-id": [
+ "5476f4db-1389-4afc-98f6-a370c3974ccb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224106Z:5476f4db-1389-4afc-98f6-a370c3974ccb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:06 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649\",\r\n \"name\": \"onesdk5649\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "202"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "14a4d274-8ee1-43aa-aefa-9f539994687c"
+ ],
+ "x-ms-correlation-request-id": [
+ "14a4d274-8ee1-43aa-aefa-9f539994687c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224044Z:14a4d274-8ee1-43aa-aefa-9f539994687c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:44 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-request-id": [
+ "ee4e89d5-7f02-4078-99bb-93dbc59962c1"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee4e89d5-7f02-4078-99bb-93dbc59962c1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224044Z:ee4e89d5-7f02-4078-99bb-93dbc59962c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:4194369e-983a-4edd-9647-a50df9959df4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "b375e8e2-d946-490c-9558-58bc27a934fa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224045Z:b375e8e2-d946-490c-9558-58bc27a934fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk8825' under resource group 'onesdk5649' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "154"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "00cd9107-1f6f-4df0-9258-fc42df927f6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "00cd9107-1f6f-4df0-9258-fc42df927f6e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224046Z:00cd9107-1f6f-4df0-9258-fc42df927f6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:46 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "efd50749-3d82-4757-86a0-2208ea8b0b6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "63aa29e5-2bcc-481e-aa16-297c9e05b774"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224049Z:63aa29e5-2bcc-481e-aa16-297c9e05b774"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a29d7203-e02d-4d6f-b5b5-a7561728bdf8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "19036b57-0b81-4613-8083-6106d92d36f9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224050Z:19036b57-0b81-4613-8083-6106d92d36f9"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "56d85eb2-5375-4fc1-8183-667665c09dae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "32eac32c-85d4-41e4-a690-539fb3fca95e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224050Z:32eac32c-85d4-41e4-a690-539fb3fca95e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3b077420-ae29-4523-bdc7-d66e8eebf7ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eadf8e0e-ce6c-4925-818c-e315e044029c\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "32fddcb1-04e4-4a38-88aa-1cd61c3eb78f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224050Z:32fddcb1-04e4-4a38-88aa-1cd61c3eb78f"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "288ef1b8-7212-44b4-9c1b-72c9ce9b3bb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "1def58d2-eb2c-40a7-8a2a-2998bde514b0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224052Z:1def58d2-eb2c-40a7-8a2a-2998bde514b0"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e08b0aab-e6c2-4db2-97b7-5015ac358862"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "ceef1a59-5a9b-4b7f-a23c-a97f1e083ffe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224052Z:ceef1a59-5a9b-4b7f-a23c-a97f1e083ffe"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7906a856-4f64-4f58-a4dc-675ff158718a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"a5409144-4871-4c74-80a1-d5cdfb48428a\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "07b0fab2-aa13-4201-b29e-e0872c50fa2b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224102Z:07b0fab2-aa13-4201-b29e-e0872c50fa2b"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5f7a27a8-a030-4d56-b699-6e446d2451bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b6c7aa8-790f-42bf-9237-f89d21c28bb5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224103Z:4b6c7aa8-790f-42bf-9237-f89d21c28bb5"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "aa666192-ac26-41e4-af2e-c4f8acc0a388"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb5a9fde-2b99-4323-9134-f69be1478bda"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224104Z:fb5a9fde-2b99-4323-9134-f69be1478bda"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1264"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dc93a59c-eafb-469b-ae24-ad213e6df371"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "7de93c34-7617-47df-8882-f9b891f9e283"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224104Z:7de93c34-7617-47df-8882-f9b891f9e283"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"95957dd3-27d6-4933-986c-8a6f2847871e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"95957dd3-27d6-4933-986c-8a6f2847871e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "777"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "201e96f4-9b45-49c8-8d1e-e1ff2da09536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"95957dd3-27d6-4933-986c-8a6f2847871e\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae9d7f0a-a907-4ad9-b648-562d57858425"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224105Z:ae9d7f0a-a907-4ad9-b648-562d57858425"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "388"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"e79fe578-3cae-486a-9b5c-8d9be3e0b0dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"e79fe578-3cae-486a-9b5c-8d9be3e0b0dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "827"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "45ab0d26-31a4-49ea-8a5e-2e6fe519e726"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45ab0d26-31a4-49ea-8a5e-2e6fe519e726?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2865df9-63e7-42aa-9489-706f3d2c83f7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224048Z:d2865df9-63e7-42aa-9489-706f3d2c83f7"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:47 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route1\",\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"eadf8e0e-ce6c-4925-818c-e315e044029c\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "1059"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"345d6408-36be-4bae-8ed5-cfc984944b21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "89a4fce5-6a34-4fa7-b024-e442793a15cc"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/89a4fce5-6a34-4fa7-b024-e442793a15cc?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ca2374f-74c5-4f4f-8374-f672b948df74"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224051Z:1ca2374f-74c5-4f4f-8374-f672b948df74"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route1\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route2\",\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"a5409144-4871-4c74-80a1-d5cdfb48428a\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "1328"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route1\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n },\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"bb6fe4e5-16b3-4f4d-92f3-759d469bf397\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0b202c0a-eb4d-41f4-b24a-edc1e488827d"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/0b202c0a-eb4d-41f4-b24a-edc1e488827d?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "501a28b5-f26e-4ed1-ac1a-ce9252dcec88"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224103Z:501a28b5-f26e-4ed1-ac1a-ce9252dcec88"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"route2\",\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\"\r\n }\r\n ],\r\n \"subnets\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c8fe0361-4ae6-4cef-9b86-9513dab28f1e\\\"\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"name\": \"onesdk8825\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"westeurope\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "841"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk8825\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825\",\r\n \"etag\": \"W/\\\"adfbde5f-d080-48e5-b9cc-325a3c29110a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825/routes/route2\",\r\n \"etag\": \"W/\\\"adfbde5f-d080-48e5-b9cc-325a3c29110a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.3.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "775"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "26603e72-33fb-41c1-b9da-bd6fbc0f4bc2"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/26603e72-33fb-41c1-b9da-bd6fbc0f4bc2?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ed280c1-24d7-4fd4-88e0-4198d0da7bc6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224104Z:6ed280c1-24d7-4fd4-88e0-4198d0da7bc6"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/45ab0d26-31a4-49ea-8a5e-2e6fe519e726?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzQ1YWIwZDI2LTMxYTQtNDllYS04YTVlLTJlNmZlNTE5ZTcyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8584beac-ecba-4663-96ba-4474cd37e0d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "504f97ad-b056-4737-94ac-9cfde34390aa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224049Z:504f97ad-b056-4737-94ac-9cfde34390aa"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/89a4fce5-6a34-4fa7-b024-e442793a15cc?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzg5YTRmY2U1LTZhMzQtNGZhNy1iMDI0LWU0NDI3OTNhMTVjYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "460336a3-1bd5-4f4d-98bb-2d59fd04c4a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfeae8ca-ada9-4a48-b0db-286fe9d2b563"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224051Z:bfeae8ca-ada9-4a48-b0db-286fe9d2b563"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:40:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/0b202c0a-eb4d-41f4-b24a-edc1e488827d?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzBiMjAyYzBhLWViNGQtNDFmNC1iMjRhLWVkYzFlNDg4ODI3ZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d298ff8e-0d38-4b68-ad5d-09e382f5b1f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "e28360d5-74f9-452d-a8e5-ad60f3b0e51b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224103Z:e28360d5-74f9-452d-a8e5-ad60f3b0e51b"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/26603e72-33fb-41c1-b9da-bd6fbc0f4bc2?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzI2NjAzZTcyLTMzZmItNDFjMS1iOWRhLWJkNmZiYzBmNGJjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "646075db-0f17-4606-bc9b-83a4c704693b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb381fff-7d62-4087-ba50-6bdfaa18f33e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224105Z:fb381fff-7d62-4087-ba50-6bdfaa18f33e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables/onesdk8825?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazg4MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b24aa2b2-fe2b-49d1-8196-202303f84ea1"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operationResults/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c9b6f0f-cdf4-456a-8c4b-20bc1980105e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224105Z:4c9b6f0f-cdf4-456a-8c4b-20bc1980105e"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:05 GMT"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/b24aa2b2-fe2b-49d1-8196-202303f84ea1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2IyNGFhMmIyLWZlMmItNDlkMS04MTk2LTIwMjMwM2Y4NGVhMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ecc9dc43-e16e-416e-82e5-d2f3778f0bfb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "261a72f6-4944-4368-9fa7-e09bb7c344d2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224106Z:261a72f6-4944-4368-9fa7-e09bb7c344d2"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk5649/providers/Microsoft.Network/routeTables?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazU2NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "38"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6f97bb2a-8a7a-4230-922a-8c6256c8deb1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4969fb0-952e-457b-9c33-2c51844d2307"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224106Z:c4969fb0-952e-457b-9c33-2c51844d2307"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk5649?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "e358d00e-67e1-42c5-a01f-b279a4658afb"
+ ],
+ "x-ms-correlation-request-id": [
+ "e358d00e-67e1-42c5-a01f-b279a4658afb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224106Z:e358d00e-67e1-42c5-a01f-b279a4658afb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "f30d2c83-f989-41a3-84bf-422ca4553801"
+ ],
+ "x-ms-correlation-request-id": [
+ "f30d2c83-f989-41a3-84bf-422ca4553801"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224107Z:f30d2c83-f989-41a3-84bf-422ca4553801"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "cb157f48-0428-406a-91ad-061f65555c8f"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb157f48-0428-406a-91ad-061f65555c8f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224122Z:cb157f48-0428-406a-91ad-061f65555c8f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:21 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-request-id": [
+ "e5529c44-db10-4208-8fec-4fd09ac09ff5"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5529c44-db10-4208-8fec-4fd09ac09ff5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224137Z:e5529c44-db10-4208-8fec-4fd09ac09ff5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:37 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOalE1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-request-id": [
+ "9d1fe587-8214-4442-a3bd-0736c5d9792f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d1fe587-8214-4442-a3bd-0736c5d9792f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T224152Z:9d1fe587-8214-4442-a3bd-0736c5d9792f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:41:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RouteTableRouteCRUD": [
+ "onesdk5649",
+ "onesdk8825",
+ "onesdk7394",
+ "onesdk2458",
+ "onesdk8881"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json
new file mode 100644
index 000000000000..ba3acb466b83
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.RouteTableTests/TestRouteTableSubnetRef.json
@@ -0,0 +1,1392 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-request-id": [
+ "73320132-4477-432f-9f93-1eba033c39ea"
+ ],
+ "x-ms-correlation-request-id": [
+ "73320132-4477-432f-9f93-1eba033c39ea"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221246Z:73320132-4477-432f-9f93-1eba033c39ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.intelligentsystems\",\r\n \"namespace\": \"microsoft.intelligentsystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedResourcePools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/databases\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingEvents\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-privatepreview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01-privatepreview\",\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01-privatepreview\",\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Bingmaps.Bingmaps\",\r\n \"namespace\": \"Bingmaps.Bingmaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Bingmaps\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Conexlink.Mycloudit\",\r\n \"namespace\": \"Conexlink.Mycloudit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Mycloudit\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"1975-02-06\",\r\n \"1967-08-19\",\r\n \"1956-03-24\",\r\n \"1955-10-28\",\r\n \"1953-01-21\",\r\n \"1949-04-24\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/aliases\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataConnect\",\r\n \"namespace\": \"Microsoft.DataConnect\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectionManagers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\",\r\n \"2010-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DataLake\",\r\n \"namespace\": \"Microsoft.DataLake\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataLakeAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.HDInsightNemadj\",\r\n \"namespace\": \"Microsoft.HDInsightNemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamStatuses\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamIOSPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamAndroidPolicies\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/mamApplications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userGroups\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-21-preview\",\r\n \"2015-06-21-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ManagementTools\",\r\n \"namespace\": \"Microsoft.ManagementTools\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateway\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateway/node\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Agreements\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Notificationhubs\",\r\n \"namespace\": \"Microsoft.Notificationhubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Publishing\",\r\n \"namespace\": \"Microsoft.Publishing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishers/assettypes/assets\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteApp\",\r\n \"namespace\": \"Microsoft.RemoteApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RemoteAppM52\",\r\n \"namespace\": \"Microsoft.RemoteAppM52\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"collections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT\",\r\n \"namespace\": \"Microsoft.RSMT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT1\",\r\n \"namespace\": \"Microsoft.RSMT1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.RSMT.DEV\",\r\n \"namespace\": \"Microsoft.RSMT.DEV\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.WaAzureSiteRecoveryTest\",\r\n \"namespace\": \"Microsoft.WaAzureSiteRecoveryTest\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"HyperVRecoveryManagerVault\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.syamTest\",\r\n \"namespace\": \"MS.Intune.syamTest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test\",\r\n \"namespace\": \"MS.Intune.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-beta\",\r\n \"2015-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test2\",\r\n \"namespace\": \"MS.Intune.Test2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test3\",\r\n \"namespace\": \"MS.Intune.Test3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test4\",\r\n \"namespace\": \"MS.Intune.Test4\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test5\",\r\n \"namespace\": \"MS.Intune.Test5\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.Test6\",\r\n \"namespace\": \"MS.Intune.Test6\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestASU\",\r\n \"namespace\": \"MS.Intune.TestASU\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"Locations/Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/MS.Intune.TestKajal\",\r\n \"namespace\": \"MS.Intune.TestKajal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/mysabanwebsites\",\r\n \"namespace\": \"mysabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mysites\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"mysites/mypages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Flight\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame\",\r\n \"namespace\": \"storeubb.memorygame\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/storeubb.memorygame-preview\",\r\n \"namespace\": \"storeubb.memorygame-preview\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicro.Deepsecurity\",\r\n \"namespace\": \"Trendmicro.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US (Partner)\",\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Trendmicrodeepsecurity.Deepsecurity\",\r\n \"namespace\": \"Trendmicrodeepsecurity.Deepsecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Deepsecurity\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-request-id": [
+ "dc599f46-87e3-4e06-a8c2-67f85852c3d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc599f46-87e3-4e06-a8c2-67f85852c3d0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221247Z:dc599f46-87e3-4e06-a8c2-67f85852c3d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:47 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-request-id": [
+ "dd4d1392-3a18-4e5d-a9eb-7027ffb0952f"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd4d1392-3a18-4e5d-a9eb-7027ffb0952f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221247Z:dd4d1392-3a18-4e5d-a9eb-7027ffb0952f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:47 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-request-id": [
+ "02d12fbe-4657-4ab7-97ed-37de3fe2d393"
+ ],
+ "x-ms-correlation-request-id": [
+ "02d12fbe-4657-4ab7-97ed-37de3fe2d393"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221253Z:02d12fbe-4657-4ab7-97ed-37de3fe2d393"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:52 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440\",\r\n \"name\": \"onesdk4440\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "202"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "f488609a-e3b6-4085-ba2b-bc7a84025e91"
+ ],
+ "x-ms-correlation-request-id": [
+ "f488609a-e3b6-4085-ba2b-bc7a84025e91"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221247Z:f488609a-e3b6-4085-ba2b-bc7a84025e91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:47 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-request-id": [
+ "1f5a9954-b527-4ee0-8cd8-28b06cf454ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f5a9954-b527-4ee0-8cd8-28b06cf454ef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221247Z:1f5a9954-b527-4ee0-8cd8-28b06cf454ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:47 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:ea0cb762-0241-416f-84ab-5d1e61a0079a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "2014685f-671c-43c8-92d1-e8a54d35b078"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221248Z:2014685f-671c-43c8-92d1-e8a54d35b078"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:48 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/routeTables/onesdk3058' under resource group 'onesdk4440' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "154"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "bce5e889-3851-41aa-89fd-58141c1ffbff"
+ ],
+ "x-ms-correlation-request-id": [
+ "bce5e889-3851-41aa-89fd-58141c1ffbff"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221249Z:bce5e889-3851-41aa-89fd-58141c1ffbff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:48 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4091ae5c-312d-4174-bbfc-e78600b6999b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "407e32b7-9061-467e-8fa3-8d80066d033f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221251Z:407e32b7-9061-467e-8fa3-8d80066d033f"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "829"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1c17e957-6362-4211-bbee-52dc1ad88380"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f44d5a76-4aa7-44d3-a9cc-75024e49cf8d\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0442ac7-0265-4e8a-91ea-fc2fba904fdb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221251Z:a0442ac7-0265-4e8a-91ea-fc2fba904fdb"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1042"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "392c848e-5e1d-4774-b50a-4f68b7d51753"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"ae8fc816-f6c0-44f7-b1c4-cb504ceaa796\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4deed77-3d87-48de-b7f2-3a7f8859ee04"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221253Z:e4deed77-3d87-48de-b7f2-3a7f8859ee04"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3JvdXRlVGFibGVzL29uZXNkazMwNTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"route1\"\r\n }\r\n ],\r\n \"subnets\": []\r\n },\r\n \"name\": \"onesdk3058\",\r\n \"type\": \"microsoft.network/routeTables\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "388"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk3058\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\",\r\n \"etag\": \"W/\\\"b7b47d4b-c200-4403-b1f2-cd59129fd218\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058/routes/route1\",\r\n \"etag\": \"W/\\\"b7b47d4b-c200-4403-b1f2-cd59129fd218\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "827"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3bc317bc-0f10-457e-8eaa-6f865ee6b83c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/3bc317bc-0f10-457e-8eaa-6f865ee6b83c?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "63b012d1-81b6-46bd-a353-6b6de9d735ae"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221250Z:63b012d1-81b6-46bd-a353-6b6de9d735ae"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:50 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/3bc317bc-0f10-457e-8eaa-6f865ee6b83c?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zLzNiYzMxN2JjLTBmMTAtNDU3ZS04ZWFhLTZmODY1ZWU2YjgzYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6696a2a2-8a06-41e5-84dd-c905415545b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "01758fd8-a2ab-48c0-81e0-65a2e473cf9a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221251Z:01758fd8-a2ab-48c0-81e0-65a2e473cf9a"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk1449' under resource group 'onesdk4440' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "158"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "13a1f0ac-e1b2-4a22-9886-7308311c65ba"
+ ],
+ "x-ms-correlation-request-id": [
+ "13a1f0ac-e1b2-4a22-9886-7308311c65ba"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221251Z:13a1f0ac-e1b2-4a22-9886-7308311c65ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:51 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk1449\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449\",\r\n \"etag\": \"W/\\\"e57b06f0-b152-490a-b98e-4dd1c48985a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1180\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\",\r\n \"etag\": \"W/\\\"e57b06f0-b152-490a-b98e-4dd1c48985a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1116"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d50e6c11-dba8-4256-891f-21fd3669f8d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"e57b06f0-b152-490a-b98e-4dd1c48985a4\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "53a388ff-de2a-48cd-900a-9b87e9d16ada"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221253Z:53a388ff-de2a-48cd-900a-9b87e9d16ada"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualnetworks/onesdk1449?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlR3JvdXBzL29uZXNkazQ0NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGsxNDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n },\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"onesdk1180\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk1449\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "681"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"onesdk1449\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449\",\r\n \"etag\": \"W/\\\"430f4cfc-bd0f-454e-a766-efa1ccc5b433\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"onesdk1180\",\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/virtualNetworks/onesdk1449/subnets/onesdk1180\",\r\n \"etag\": \"W/\\\"430f4cfc-bd0f-454e-a766-efa1ccc5b433\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourceGroups/onesdk4440/providers/Microsoft.Network/routeTables/onesdk3058\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1114"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c3a2d3a7-853d-495a-8c17-2e9f6aed6e37"
+ ],
+ "Azure-AsyncOperation": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/c3a2d3a7-853d-495a-8c17-2e9f6aed6e37?api-version=2015-05-01-preview"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "261d2647-7ca1-4d9e-b404-d67284ff3573"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221252Z:261d2647-7ca1-4d9e-b404-d67284ff3573"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:52 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/providers/Microsoft.Network/locations/nrp7/operations/c3a2d3a7-853d-495a-8c17-2e9f6aed6e37?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwNy9vcGVyYXRpb25zL2MzYTJkM2E3LTg1M2QtNDk1YS04YzE3LTJlOWY2YWVkNmUzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-05-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e3edc1dc-51af-490a-90e8-bfa0d7d48c2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "636b3aa8-c731-4d83-857d-1b369af91802"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221252Z:636b3aa8-c731-4d83-857d-1b369af91802"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/resourcegroups/onesdk4440?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "328db6c2-9bed-4227-aa69-716cd23c6f86"
+ ],
+ "x-ms-correlation-request-id": [
+ "328db6c2-9bed-4227-aa69-716cd23c6f86"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221253Z:328db6c2-9bed-4227-aa69-716cd23c6f86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-request-id": [
+ "1b664a2d-145e-492f-ac9b-5d33c63935ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b664a2d-145e-492f-ac9b-5d33c63935ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221253Z:1b664a2d-145e-492f-ac9b-5d33c63935ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:12:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "8daaa755-bd13-4976-b4c1-cc257c0ffa88"
+ ],
+ "x-ms-correlation-request-id": [
+ "8daaa755-bd13-4976-b4c1-cc257c0ffa88"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221308Z:8daaa755-bd13-4976-b4c1-cc257c0ffa88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:13:08 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-request-id": [
+ "ce4bc09a-ec5d-4575-a17e-98cd408d60ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce4bc09a-ec5d-4575-a17e-98cd408d60ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221324Z:ce4bc09a-ec5d-4575-a17e-98cd408d60ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:13:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-request-id": [
+ "9345aaa2-d052-4c71-a55e-4717128f9850"
+ ],
+ "x-ms-correlation-request-id": [
+ "9345aaa2-d052-4c71-a55e-4717128f9850"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221339Z:9345aaa2-d052-4c71-a55e-4717128f9850"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:13:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-request-id": [
+ "9783a002-be32-4e18-819f-e5f98cb9cd1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9783a002-be32-4e18-819f-e5f98cb9cd1f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221354Z:9783a002-be32-4e18-819f-e5f98cb9cd1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:13:54 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "62a64d1b-1e37-43fa-8588-012ab4d798a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "62a64d1b-1e37-43fa-8588-012ab4d798a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221409Z:62a64d1b-1e37-43fa-8588-012ab4d798a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:14:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "e4abc272-6f72-44d0-9604-5fc11dc63bf7"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4abc272-6f72-44d0-9604-5fc11dc63bf7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221424Z:e4abc272-6f72-44d0-9604-5fc11dc63bf7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:14:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/6dfcf2d3-8682-4606-943d-29b694b4c8c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NDQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmRmY2YyZDMtODY4Mi00NjA2LTk0M2QtMjliNjk0YjRjOGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBORFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "048ad75f-4e30-4d73-9023-a900cab41a2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "048ad75f-4e30-4d73-9023-a900cab41a2d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150710T221441Z:048ad75f-4e30-4d73-9023-a900cab41a2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 22:14:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RouteTableSubnetRef": [
+ "onesdk4440",
+ "onesdk3058",
+ "onesdk1449",
+ "onesdk1180",
+ "onesdk1100"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "6dfcf2d3-8682-4606-943d-29b694b4c8c4"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json
new file mode 100644
index 000000000000..a0e05d113d64
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.TestDnsAvailabilityTest/TestDnsAvailability.json
@@ -0,0 +1,112 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.classiccompute\",\r\n \"namespace\": \"microsoft.classiccompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.classicnetwork\",\r\n \"namespace\": \"microsoft.classicnetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"India South\",\r\n \"India Central\",\r\n \"India West\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.classicstorage\",\r\n \"namespace\": \"microsoft.classicstorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "63650"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "3a91a605-9d6f-4513-b13e-655bebc25173"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a91a605-9d6f-4513-b13e-655bebc25173"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20150710T191413Z:3a91a605-9d6f-4513-b13e-655bebc25173"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 19:14:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/CheckDnsNameAvailability?domainNameLabel=onesdk5980&api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL0NoZWNrRG5zTmFtZUF2YWlsYWJpbGl0eT9kb21haW5OYW1lTGFiZWw9b25lc2RrNTk4MCZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"available\": true\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "25"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0eddcb2c-03b6-4f2c-abcb-30149fbf335e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "4734baa4-83b6-44dc-9ff5-ccc35a7f862d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20150710T191414Z:4734baa4-83b6-44dc-9ff5-ccc35a7f862d"
+ ],
+ "Date": [
+ "Fri, 10 Jul 2015 19:14:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-DnsAvailability": [
+ "onesdk5980"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
index b4f7db47ae9a..e627cb8a6600 100644
--- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
+++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
@@ -212,7 +212,19 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -278,7 +290,6 @@
-
@@ -319,7 +330,7 @@
True
True
-
+
diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
index ebad21a3aaac..beb6c0803b55 100644
--- a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
@@ -165,6 +165,20 @@ protected override void Configure()
// MNM to CNM
Mapper.CreateMap();
+ // RouteTable
+ // CNM to MNM
+ Mapper.CreateMap();
+
+ // MNM to CNM
+ Mapper.CreateMap();
+
+ // Route
+ // CNM to MNM
+ Mapper.CreateMap();
+
+ // MNM to CNM
+ Mapper.CreateMap();
+
// Gateways
// CNM to MNM
Mapper.CreateMap();
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs
index 557c902b1920..f3b564f25557 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/AddAzureLoadBalancerFrontendIpConfigCommand.cs
@@ -19,7 +19,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))]
+ [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))]
public class AddAzureLoadBalancerFrontendIpConfigCommand : AzureLoadBalancerFrontendIpConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs
index 1d7d01a25573..9977a0833f1a 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/RemoveAzureLoadBalancerFrontendIpConfigCommand.cs
@@ -18,7 +18,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))]
+ [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))]
public class RemoveAzureLoadBalancerFrontendIpConfigCommand : NetworkBaseCmdlet
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs
index f2ba09e7db14..49828cf9dd56 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/FrontendIpConfiguration/SetAzureLoadBalancerFrontendIpConfigCommand.cs
@@ -19,7 +19,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSBackendAddressPool))]
+ [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerFrontendIpConfig"), OutputType(typeof(PSLoadBalancer))]
public class SetAzureLoadBalancerFrontendIpConfigCommand : AzureLoadBalancerFrontendIpConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs
index 6ea55e507dca..c116dedf82bc 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/AddAzureLoadBalancerInboundNatRuleConfigCommand.cs
@@ -20,7 +20,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))]
+ [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))]
public class AddAzureLoadBalancerInboundNatRuleConfigCommand : AzureLoadBalancerInboundNatRuleConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs
index 1e6c7c2fbf10..ff7d9dc23cb3 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/RemoveAzureLoadBalancerInboundNatRuleConfigCommand.cs
@@ -18,7 +18,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))]
+ [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))]
public class RemoveAzureLoadBalancerInboundNatRuleConfigCommand : NetworkBaseCmdlet
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs
index b2203c7889d3..4c04263a08ab 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/InboundNatRule/SetAzureLoadBalancerInboundNatRuleConfigCommand.cs
@@ -20,7 +20,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSFrontendIPConfiguration))]
+ [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerInboundNatRuleConfig"), OutputType(typeof(PSLoadBalancer))]
public class SetAzureLoadBalancerInboundNatRuleConfigCommand : AzureLoadBalancerInboundNatRuleConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs
index 3d91b976620f..34f1effb0a50 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AddAzureLoadBalancerProbeConfigCommand.cs
@@ -20,7 +20,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))]
+ [Cmdlet(VerbsCommon.Add, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))]
public class AddAzureLoadBalancerProbeConfigCommand : AzureLoadBalancerProbeConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs
index 0caee7fe30da..b1856be2f5da 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/AzureLoadBalancerProbeConfigBase.cs
@@ -26,7 +26,7 @@ public class AzureLoadBalancerProbeConfigBase : NetworkBaseCmdlet
public virtual string Name { get; set; }
[Parameter(
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Request path")]
[ValidateNotNullOrEmpty]
public string RequestPath { get; set; }
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs
index 599d7f2d4e10..5e77827debd4 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/RemoveAzureLoadBalancerProbeCommand.cs
@@ -18,7 +18,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))]
+ [Cmdlet(VerbsCommon.Remove, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))]
public class RemoveAzureLoadBalancerProbeCommand : NetworkBaseCmdlet
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs
index 5e87259ce1b3..4621882a5f0e 100644
--- a/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/LoadBalancer/Probe/SetAzureLoadBalancerProbeConfigCommand.cs
@@ -20,7 +20,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancingRule))]
+ [Cmdlet(VerbsCommon.Set, "AzureLoadBalancerProbeConfig"), OutputType(typeof(PSLoadBalancer))]
public class SetAzureLoadBalancerProbeConfigCommand : AzureLoadBalancerProbeConfigBase
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml
index ce97bf4d1ee8..a27c5f7c480e 100644
--- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml
+++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml
@@ -2038,7 +2038,7 @@ SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map
- Get-AzureCheckDnsAvailability
+ Test-AzureDnsAvailability
Checks whether a domain name in the cloudapp.net zone is available for use
@@ -2054,7 +2054,7 @@ SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map
- Get-AzureCheckDnsAvailability
+ Test-AzureDnsAvailability
DomainQualifiedName
diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml
index 4a811a7bbb56..fec2277b5e33 100644
--- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml
+++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml
@@ -96,6 +96,10 @@
NetworkSecurityGroupText
+
+
+ RouteTableText
+
@@ -213,8 +217,8 @@
DnsSettingsText
-
- AppliedDnsSettingsText
+
+ EnableIPForwarding
@@ -739,5 +743,97 @@
+
+ Microsoft.Azure.Commands.Network.Models.PSRouteTable
+
+ Microsoft.Azure.Commands.Network.Models.PSRouteTable
+
+
+
+
+
+
+
+ Name
+
+
+
+ ResourceGroupName
+
+
+
+ Location
+
+
+
+ Id
+
+
+
+ Etag
+
+
+
+ ProvisioningState
+
+
+
+ TagsTable
+
+
+
+ RoutesText
+
+
+
+ SubnetsText
+
+
+
+
+
+
+
+ Microsoft.Azure.Commands.Network.Models.PSRoute
+
+ Microsoft.Azure.Commands.Network.Models.PSRoute
+
+
+
+
+
+
+
+ Name
+
+
+
+ Id
+
+
+
+ Etag
+
+
+
+ ProvisioningState
+
+
+
+ AddressPrefix
+
+
+
+ NextHopType
+
+
+
+ NextHopIpAddress
+
+
+
+
+
+
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs
index 8c69ddcf099e..5ef1080dd50a 100644
--- a/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs
@@ -30,8 +30,10 @@ public class PSNetworkInterface : PSTopLevelResource
public bool Primary { get; set; }
- public PSResourceId NetworkSecurityGroup { get; set; }
+ public bool EnableIPForwarding { get; set; }
+ public PSResourceId NetworkSecurityGroup { get; set; }
+
public string ProvisioningState { get; set; }
[JsonIgnore]
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs b/src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs
similarity index 72%
rename from src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs
rename to src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs
index 086a5144392a..926382dbd34d 100644
--- a/src/ResourceManager/Network/Commands.Network/Models/PSProbeProtocol.cs
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSRoute.cs
@@ -15,10 +15,14 @@
namespace Microsoft.Azure.Commands.Network.Models
{
- public enum PSProbeProtocol
+ public class PSRoute : PSChildResource
{
- Http,
+ public string AddressPrefix { get; set; }
+
+ public string NextHopType { get; set; }
- Tcp,
+ public string NextHopIpAddress { get; set; }
+
+ public string ProvisioningState { get; set; }
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs b/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs
new file mode 100644
index 000000000000..a4d4d7ec5bbc
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSRouteTable.cs
@@ -0,0 +1,42 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.
+//
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using System.Collections.Generic;
+
+ using Newtonsoft.Json;
+
+ public class PSRouteTable : PSTopLevelResource
+ {
+ public List Routes { get; set; }
+
+ public List Subnets { get; set; }
+
+ public string ProvisioningState { get; set; }
+
+ [JsonIgnore]
+ public string RoutesText
+ {
+ get { return JsonConvert.SerializeObject(Routes, Formatting.Indented); }
+ }
+
+ [JsonIgnore]
+ public string SubnetsText
+ {
+ get { return JsonConvert.SerializeObject(Subnets, Formatting.Indented); }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs
new file mode 100644
index 000000000000..cb61ec97cda3
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSSecurityRule - Copy.cs
@@ -0,0 +1,40 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// 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.
+//
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSSecurityRule : PSChildResource
+ {
+ public string Description { get; set; }
+
+ public string Protocol { get; set; }
+
+ public string SourcePortRange { get; set; }
+
+ public string DestinationPortRange { get; set; }
+
+ public string SourceAddressPrefix { get; set; }
+
+ public string DestinationAddressPrefix { get; set; }
+
+ public string Access { get; set; }
+
+ public int Priority { get; set; }
+
+ public string Direction { get; set; }
+
+ public string ProvisioningState { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs
index 9a3aaa36bffb..562df481baa3 100644
--- a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs
@@ -26,6 +26,8 @@ public class PSSubnet : PSChildResource
public PSResourceId NetworkSecurityGroup { get; set; }
+ public PSResourceId RouteTable { get; set; }
+
public string ProvisioningState { get; set; }
[JsonIgnore]
@@ -39,5 +41,11 @@ public string NetworkSecurityGroupText
{
get { return JsonConvert.SerializeObject(NetworkSecurityGroup, Formatting.Indented); }
}
+
+ [JsonIgnore]
+ public string RouteTableText
+ {
+ get { return JsonConvert.SerializeObject(RouteTable, Formatting.Indented); }
+ }
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs
index c378bdebf4ba..85c116e2567c 100644
--- a/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/NetworkInterface/NewAzureNetworkInterfaceCommand.cs
@@ -149,6 +149,11 @@ public class NewAzureNetworkInterfaceCommand : NetworkInterfaceBaseCmdlet
HelpMessage = "The Internal Dns name")]
public string InternalDnsNameLabel { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "EnableIPForwarding")]
+ public SwitchParameter EnableIPForwarding { get; set; }
+
[Parameter(
Mandatory = false,
ValueFromPipelineByPropertyName = true,
@@ -222,6 +227,7 @@ private PSNetworkInterface CreateNetworkInterface()
var networkInterface = new PSNetworkInterface();
networkInterface.Name = this.Name;
networkInterface.Location = this.Location;
+ networkInterface.EnableIPForwarding = this.EnableIPForwarding.IsPresent;
networkInterface.IpConfigurations = new List();
var nicIpConfiguration = new PSNetworkInterfaceIpConfiguration();
diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs
index e1166e30e690..744153a54299 100644
--- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/RemoveAzureNetworkSecurityRuleConfigCommand.cs
@@ -18,7 +18,7 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Remove, "AzureNetworkSecurityRuleConfig"), OutputType(typeof(PSSecurityRule))]
+ [Cmdlet(VerbsCommon.Remove, "AzureNetworkSecurityRuleConfig"), OutputType(typeof(PSNetworkSecurityGroup))]
public class RemoveAzureNetworkSecurityRuleConfigCommand : NetworkBaseCmdlet
{
[Parameter(
diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs
index d07dd6986d8e..647e89fc0ac5 100644
--- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs
@@ -83,9 +83,9 @@ public override void ExecuteCmdlet()
}
else
{
- var virtualNetwork = this.CreateNetworkSecurityGroup();
+ var networkSecurityGroup = this.CreateNetworkSecurityGroup();
- WriteObject(virtualNetwork);
+ WriteObject(networkSecurityGroup);
}
}
@@ -102,7 +102,7 @@ private PSNetworkSecurityGroup CreateNetworkSecurityGroup()
nsgModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.NetworkSecurityGroupType;
nsgModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
- // Execute the Create VirtualNetwork call
+ // Execute the Create NetworkSecurityGroup call
this.NetworkSecurityGroupClient.CreateOrUpdate(this.ResourceGroupName, this.Name, nsgModel);
var getNetworkSecurityGroup = this.GetNetworkSecurityGroup(this.ResourceGroupName, this.Name);
diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs
index 98dc8d3faea1..6011d9761270 100644
--- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/SetAzureNetworkSecurityGroupCommand.cs
@@ -45,7 +45,7 @@ public override void ExecuteCmdlet()
nsgModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.NetworkSecurityGroupType;
nsgModel.Tags = TagsConversionHelper.CreateTagDictionary(this.NetworkSecurityGroup.Tag, validate: true);
- // Execute the Create VirtualNetwork call
+ // Execute the PUT NetworkSecurityGroup call
this.NetworkSecurityGroupClient.CreateOrUpdate(this.NetworkSecurityGroup.ResourceGroupName, this.NetworkSecurityGroup.Name, nsgModel);
var getNetworkSecurityGroup = this.GetNetworkSecurityGroup(this.NetworkSecurityGroup.ResourceGroupName, this.NetworkSecurityGroup.Name);
diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs
index 6898a4d91901..3b9314352545 100644
--- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs
@@ -103,8 +103,7 @@ public static string ApplicationGatewayFrontendPortName {
get {
return ResourceManager.GetString("ApplicationGatewayFrontendPortName", resourceCulture);
}
- }
-
+ }
///
/// Looks up a localized string similar to httpListeners.
///
@@ -331,29 +330,37 @@ public static string ResourceNotFound {
}
///
- /// Looks up a localized string similar to SetByFqdn.
+ /// Looks up a localized string similar to microsoft.network/routeTables.
///
- public static string SetByFqdn {
+ public static string RouteTableType {
get {
- return ResourceManager.GetString("SetByFqdn", resourceCulture);
+ return ResourceManager.GetString("RouteTableType", resourceCulture);
+ }
+ }
+
+ /// /// Looks up a localized string similar to SetByResource.
+ ///
+ public static string SetByResource {
+ get {
+ return ResourceManager.GetString("SetByResource", resourceCulture);
}
}
///
- /// Looks up a localized string similar to SetByIP.
+ /// Looks up a localized string similar to SetByFqdn.
///
- public static string SetByIP {
+ public static string SetByFqdn {
get {
- return ResourceManager.GetString("SetByIP", resourceCulture);
+ return ResourceManager.GetString("SetByFqdn", resourceCulture);
}
}
///
- /// Looks up a localized string similar to SetByResource.
+ /// Looks up a localized string similar to SetByIP.
///
- public static string SetByResource {
+ public static string SetByIP {
get {
- return ResourceManager.GetString("SetByResource", resourceCulture);
+ return ResourceManager.GetString("SetByIP", resourceCulture);
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx
index 84ff031bfe7b..9391a761e400 100644
--- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx
+++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx
@@ -203,7 +203,9 @@
VirtualNetworkGatewayNameNotSet
-
+
+ microsoft.network/routeTables
+
backendAddressPools
@@ -242,5 +244,4 @@
SetByIP
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs b/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs
similarity index 84%
rename from src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs
rename to src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs
index 5023c70339f7..833559a54fe6 100644
--- a/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/GetAzureCheckDnsAvailabilityCmdlet.cs
+++ b/src/ResourceManager/Network/Commands.Network/ProviderWideCmdlets/TestAzureDnsAvailabilityCmdlet.cs
@@ -17,8 +17,8 @@
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Get, "AzureCheckDnsAvailability")]
- public class GetAzureCheckDnsAvailabilityCmdlet : NetworkBaseCmdlet
+ [Cmdlet(VerbsDiagnostic.Test, "AzureDnsAvailability"), OutputType(typeof(bool))]
+ public class TestAzureDnsAvailabilityCmdlet : NetworkBaseCmdlet
{
[Parameter(
Mandatory = true,
@@ -34,8 +34,9 @@ public class GetAzureCheckDnsAvailabilityCmdlet : NetworkBaseCmdlet
public override void ExecuteCmdlet()
{
+ this.Location = this.Location.Replace(" ", string.Empty);
var result = this.NetworkClient.NetworkResourceProviderClient.CheckDnsNameAvailability(this.Location, this.DomainQualifiedName);
- WriteObject(result);
+ WriteObject(result.DnsNameAvailability);
}
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs
new file mode 100644
index 000000000000..ecb29f42c33c
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/GetAzureRouteTableCommand.cs
@@ -0,0 +1,82 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Management.Automation;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Commands.Network.Models;
+using MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Get, "AzureRouteTable"), OutputType(typeof(PSRouteTable))]
+ public class GetAzureRouteTableCommand : RouteTableBaseCmdlet
+ {
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ if (!string.IsNullOrEmpty(this.Name))
+ {
+ var routeTable = this.GetRouteTable(this.ResourceGroupName, this.Name);
+
+ WriteObject(routeTable);
+ }
+ else if (!string.IsNullOrEmpty(this.ResourceGroupName))
+ {
+ var routeTableGetResponse = this.RouteTableClient.List(this.ResourceGroupName);
+
+ var psRouteTables = new List();
+
+ foreach (var routeTable in routeTableGetResponse.RouteTables)
+ {
+ var psRouteTable = this.ToPsRouteTable(routeTable);
+ psRouteTable.ResourceGroupName = this.ResourceGroupName;
+ psRouteTables.Add(psRouteTable);
+ }
+
+ WriteObject(psRouteTables, true);
+ }
+ else
+ {
+ var nsgGetResponse = this.RouteTableClient.ListAll();
+
+ var psRouteTables = new List();
+
+ foreach (var routeTable in nsgGetResponse.RouteTables)
+ {
+ var psRouteTable = this.ToPsRouteTable(routeTable);
+ psRouteTable.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(routeTable.Id);
+ psRouteTables.Add(psRouteTable);
+ }
+
+ WriteObject(psRouteTables, true);
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs
new file mode 100644
index 000000000000..e5a734f74a1d
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/NewAzureRouteTableCommand.cs
@@ -0,0 +1,113 @@
+// ----------------------------------------------------------------------------------
+//
+// 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;
+using System.Collections.Generic;
+using System.Management.Automation;
+using AutoMapper;
+using Microsoft.Azure.Commands.Tags.Model;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.Resources.Models;
+using MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.New, "AzureRouteTable"), OutputType(typeof(PSRouteTable))]
+ public class NewAzureRouteTableCommand : RouteTableBaseCmdlet
+ {
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "location.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Location { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The list of Routes")]
+ public List Route { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "An array of hashtables which represents resource tags.")]
+ public Hashtable[] Tag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation if you want to overrite a resource")]
+ public SwitchParameter Force { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ if (this.IsRouteTablePresent(this.ResourceGroupName, this.Name))
+ {
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResource, Name),
+ Microsoft.Azure.Commands.Network.Properties.Resources.OverwritingResourceMessage,
+ Name,
+ () => this.CreateRouteTable());
+
+ WriteObject(this.GetRouteTable(this.ResourceGroupName, this.Name));
+ }
+ else
+ {
+ var routeTable = this.CreateRouteTable();
+
+ WriteObject(routeTable);
+ }
+ }
+
+ private PSRouteTable CreateRouteTable()
+ {
+ var psRouteTable = new PSRouteTable();
+ psRouteTable.Name = this.Name;
+ psRouteTable.ResourceGroupName = this.ResourceGroupName;
+ psRouteTable.Location = this.Location;
+ psRouteTable.Routes = this.Route;
+
+ // Map to the sdk object
+ var routeTableModel = Mapper.Map(psRouteTable);
+ routeTableModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.RouteTableType;
+ routeTableModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+
+ // Execute the Create RouteTable call
+ this.RouteTableClient.CreateOrUpdate(this.ResourceGroupName, this.Name, routeTableModel);
+
+ var getRouteTable = this.GetRouteTable(this.ResourceGroupName, this.Name);
+
+ return getRouteTable;
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs
new file mode 100644
index 000000000000..a0e3162a6221
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/RemoveAzureRouteTableCommand.cs
@@ -0,0 +1,64 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Network;
+using MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Remove, "AzureRouteTable")]
+ public class RemoveAzureRouteTableCommand : RouteTableBaseCmdlet
+ {
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation.")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false)]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.RemovingResource, Name),
+ Microsoft.Azure.Commands.Network.Properties.Resources.RemoveResourceMessage,
+ Name,
+ () => this.RouteTableClient.Delete(this.ResourceGroupName, this.Name));
+
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs
new file mode 100644
index 000000000000..a4ec27d53b36
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AddAzureRouteConfigCommand.cs
@@ -0,0 +1,61 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Add, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))]
+ public class AddAzureRouteConfigCommand : AzureRouteConfigBase
+ {
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public override string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ // Verify if the Route exists in the RouteTable
+ var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase));
+
+ if (route != null)
+ {
+ throw new ArgumentException("Route with the specified name already exists");
+ }
+
+ route = new PSRoute();
+
+ route.Name = this.Name;
+ route.AddressPrefix = this.AddressPrefix;
+ route.NextHopType = this.NextHopType;
+ route.NextHopIpAddress = this.NextHopIpAddress;
+
+ this.RouteTable.Routes.Add(route);
+
+ WriteObject(this.RouteTable);
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs
new file mode 100644
index 000000000000..07524238641f
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/AzureRouteConfigBase.cs
@@ -0,0 +1,54 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ public class AzureRouteConfigBase : NetworkBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The destination CIDR to which the route applies")]
+ [ValidateNotNullOrEmpty]
+ public string AddressPrefix { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "The type of Azure hop the packet should be sent to.")]
+ [ValidateSet(
+ MNM.RouteNextHopType.Internet,
+ MNM.RouteNextHopType.Null,
+ MNM.RouteNextHopType.VirtualAppliance,
+ MNM.RouteNextHopType.VirtualNetworkGateway,
+ MNM.RouteNextHopType.VnetLocal,
+ IgnoreCase = true)]
+ [ValidateNotNullOrEmpty]
+ public string NextHopType { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The IP address packets should be forwarded to. "
+ + "Next hop values are only allowed in routes where the "
+ + "next hop type is VirtualAppliance.")]
+ public string NextHopIpAddress { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs
new file mode 100644
index 000000000000..f0c73e792006
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRouteConfigCommand.cs
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Get, "AzureRouteConfig"), OutputType(typeof(PSRoute))]
+ public class GetAzureRouteConfigCommand : NetworkBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ var routes = this.RouteTable.Routes;
+
+ if (!string.IsNullOrEmpty(this.Name))
+ {
+ var route =
+ routes.First(
+ resource =>
+ string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase));
+
+ WriteObject(route);
+ }
+ else
+ {
+ WriteObject(routes, true);
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.cs
new file mode 100644
index 000000000000..a7682a462001
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/NewAzureRouteConfigCommand.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.Commands.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.New, "AzureRouteConfig"), OutputType(typeof(PSRoute))]
+ public class NewAzureRouteConfigCommand : AzureRouteConfigBase
+ {
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public override string Name { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ var route = new PSRoute();
+
+ route.Name = this.Name;
+ route.AddressPrefix = this.AddressPrefix;
+ route.NextHopType = this.NextHopType;
+ route.NextHopIpAddress = this.NextHopIpAddress;
+
+ WriteObject(route);
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs
new file mode 100644
index 000000000000..25319cecaa39
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/RemoveAzureRouteConfigCommand.cs
@@ -0,0 +1,51 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Remove, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))]
+ public class RemoveAzurReouteConfigCommand : NetworkBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ // Verify if the route exists in the RouteTable
+ var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase));
+
+ if (route != null)
+ {
+ this.RouteTable.Routes.Remove(route);
+ }
+
+ WriteObject(this.RouteTable);
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs
new file mode 100644
index 000000000000..77041ae07150
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/Route/SetAzureRouteConfigCommand.cs
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Set, "AzureRouteConfig"), OutputType(typeof(PSRouteTable))]
+ public class SetAzureRouteConfigCommand : AzureRouteConfigBase
+ {
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "The name of the route")]
+ [ValidateNotNullOrEmpty]
+ public override string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ // Verify if the subnet exists in the NetworkSecurityGroup
+ var route = this.RouteTable.Routes.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase));
+
+ if (route == null)
+ {
+ throw new ArgumentException("route with the specified name does not exist");
+ }
+
+ route.Name = this.Name;
+ route.AddressPrefix = this.AddressPrefix;
+ route.NextHopType = this.NextHopType;
+ route.NextHopIpAddress = this.NextHopIpAddress;
+
+ WriteObject(this.RouteTable);
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs
new file mode 100644
index 000000000000..9bdf87fcd6ed
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/RouteTableBaseCmdlet.cs
@@ -0,0 +1,79 @@
+
+// ----------------------------------------------------------------------------------
+//
+// 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.Net;
+using AutoMapper;
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.Tags.Model;
+using Microsoft.Azure.Management.Network;
+
+using Hyak.Common;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Management.Network.Models;
+
+ public abstract class RouteTableBaseCmdlet : NetworkBaseCmdlet
+ {
+ public IRouteTableOperations RouteTableClient
+ {
+ get
+ {
+ return NetworkClient.NetworkResourceProviderClient.RouteTables;
+ }
+ }
+
+ public bool IsRouteTablePresent(string resourceGroupName, string name)
+ {
+ try
+ {
+ this.GetRouteTable(resourceGroupName, name);
+ }
+ catch (CloudException exception)
+ {
+ if (exception.Response.StatusCode == HttpStatusCode.NotFound)
+ {
+ // Resource is not present
+ return false;
+ }
+
+ throw;
+ }
+
+ return true;
+ }
+
+ public PSRouteTable GetRouteTable(string resourceGroupName, string name)
+ {
+ var getRouteTableResponse = this.RouteTableClient.Get(resourceGroupName, name);
+
+ var routeTable = Mapper.Map(getRouteTableResponse.RouteTable);
+ routeTable.ResourceGroupName = resourceGroupName;
+
+ routeTable.Tag = TagsConversionHelper.CreateTagHashtable(getRouteTableResponse.RouteTable.Tags);
+
+ return routeTable;
+ }
+
+ public PSRouteTable ToPsRouteTable(RouteTable routeTable)
+ {
+ var psRouteTable = Mapper.Map(routeTable);
+
+ psRouteTable.Tag = TagsConversionHelper.CreateTagHashtable(routeTable.Tags);
+
+ return psRouteTable;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs b/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs
new file mode 100644
index 000000000000..da3b09124ecb
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRouteTableCommand.cs
@@ -0,0 +1,55 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Management.Automation;
+using AutoMapper;
+using Microsoft.Azure.Commands.Tags.Model;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Commands.Network.Models;
+using MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet(VerbsCommon.Set, "AzureRouteTable"), OutputType(typeof(PSRouteTable))]
+ public class SetAzureRouteTableCommand : RouteTableBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+
+ if (!this.IsRouteTablePresent(this.RouteTable.ResourceGroupName, this.RouteTable.Name))
+ {
+ throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound);
+ }
+
+ // Map to the sdk object
+ var routeTableModel = Mapper.Map(this.RouteTable);
+ routeTableModel.Type = Microsoft.Azure.Commands.Network.Properties.Resources.RouteTableType;
+ routeTableModel.Tags = TagsConversionHelper.CreateTagDictionary(this.RouteTable.Tag, validate: true);
+
+ // Execute the PUT RouteTable call
+ this.RouteTableClient.CreateOrUpdate(this.RouteTable.ResourceGroupName, this.RouteTable.Name, routeTableModel);
+
+ var getRouteTable = this.GetRouteTable(this.RouteTable.ResourceGroupName, this.RouteTable.Name);
+ WriteObject(getRouteTable);
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs
index a95820e0c3c6..4240d56a1f17 100644
--- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs
@@ -52,6 +52,11 @@ public override void ExecuteCmdlet()
{
this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id;
}
+
+ if (this.RouteTable != null)
+ {
+ this.RouteTableId = this.RouteTable.Id;
+ }
}
subnet = new PSSubnet();
@@ -65,6 +70,12 @@ public override void ExecuteCmdlet()
subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId;
}
+ if (!string.IsNullOrEmpty(this.RouteTableId))
+ {
+ subnet.RouteTable = new PSResourceId();
+ subnet.RouteTable.Id = this.RouteTableId;
+ }
+
this.VirtualNetwork.Subnets.Add(subnet);
WriteObject(this.VirtualNetwork);
diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs
index 752ba918b4ab..562a7aa31056 100644
--- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs
+++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs
@@ -45,5 +45,19 @@ public class AzureVirtualNetworkSubnetConfigBase : NetworkBaseCmdlet
ParameterSetName = "SetByResource",
HelpMessage = "NetworkSecurityGroup")]
public PSNetworkSecurityGroup NetworkSecurityGroup { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = "SetByResourceId",
+ HelpMessage = "RouteTableId")]
+ public string RouteTableId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = "SetByResource",
+ HelpMessage = "RouteTable")]
+ public PSRouteTable RouteTable { get; set; }
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs
index e5b2f268827f..971687e4c087 100644
--- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs
@@ -36,6 +36,11 @@ public override void ExecuteCmdlet()
{
this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id;
}
+
+ if (this.RouteTable != null)
+ {
+ this.RouteTableId = this.RouteTable.Id;
+ }
}
var subnet = new PSSubnet();
@@ -48,6 +53,12 @@ public override void ExecuteCmdlet()
subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId;
}
+ if (!string.IsNullOrEmpty(this.RouteTableId))
+ {
+ subnet.RouteTable = new PSResourceId();
+ subnet.RouteTable.Id = this.RouteTableId;
+ }
+
WriteObject(subnet);
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs
index 3cf676d81769..0f0237c016eb 100644
--- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs
@@ -52,6 +52,11 @@ public override void ExecuteCmdlet()
{
this.NetworkSecurityGroupId = this.NetworkSecurityGroup.Id;
}
+
+ if (this.RouteTable != null)
+ {
+ this.RouteTableId = this.RouteTable.Id;
+ }
}
subnet.AddressPrefix = this.AddressPrefix;
@@ -62,6 +67,12 @@ public override void ExecuteCmdlet()
subnet.NetworkSecurityGroup.Id = this.NetworkSecurityGroupId;
}
+ if (!string.IsNullOrEmpty(this.RouteTableId))
+ {
+ subnet.RouteTable = new PSResourceId();
+ subnet.RouteTable.Id = this.RouteTableId;
+ }
+
WriteObject(this.VirtualNetwork);
}
}
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs
index 0b3a3ddad57f..05b8ca0f26a5 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs
@@ -129,7 +129,7 @@ protected override void OnProcessRecord()
var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true)
.WaitOnOperation(operationResult: operationResult);
- this.TryConvertAndWriteObject(result, this.OutputObjectFormat.Value);
+ this.TryConvertToResourceAndWriteObject(result, this.OutputObjectFormat.Value);
});
}
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs
index 6eed73f61fb6..62f0e6985864 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs
@@ -277,6 +277,24 @@ protected void TryConvertAndWriteObject(string resultString, ResourceObjectForma
}
}
+ ///
+ /// Writes the object
+ ///
+ /// The result as a string
+ /// The
+ protected void TryConvertToResourceAndWriteObject(string resultString, ResourceObjectFormat objectFormat)
+ {
+ Resource resultResource;
+ if (resultString.TryConvertTo>(out resultResource))
+ {
+ this.WriteObject(resultResource.ToPsObject(objectFormat));
+ }
+ else
+ {
+ this.WriteObject(resultString);
+ }
+ }
+
///
/// Writes a object as a .
///
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs
index 6287c131833a..d47782fbf631 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs
@@ -123,8 +123,8 @@ protected override void OnProcessRecord()
var activity = string.Format("{0} {1}", this.ShouldUsePatchSemantics() ? "PATCH" : "PUT", managementUri.PathAndQuery);
var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true)
.WaitOnOperation(operationResult: operationResult);
-
- this.TryConvertAndWriteObject(result, this.OutputObjectFormat.Value);
+
+ this.TryConvertToResourceAndWriteObject(result, this.OutputObjectFormat.Value);
});
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj
index 9fd59c89632d..cdb5df1019c9 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj
@@ -81,9 +81,8 @@
..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
False
@@ -92,6 +91,9 @@
..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll
+
+ ..\Commands.RecoveryServices\lib\SiteRecovery.Tests.dll
+
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs
index 795fbe6f47f9..4cbec3c12270 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs
@@ -155,5 +155,11 @@ public void CommitRPTest()
{
this.RunPowerShellTest("Test-CommitRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}
+
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void RecoveryServicesSanE2ETest()
+ {
+ this.RunPowerShellTest("Test-SanE2E -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
+ }
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1
index 7dcb3c0c6f52..42ae642add7b 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1
@@ -177,7 +177,7 @@ function Test-RecoveryServicesEnumerationTests
Assert-NotNull($protectionContainer.ID)
# Enumerate Protection Entities under each configured Protection Containers
- if ($protectionContainer.ConfigurationStatus -eq "Configured")
+ if ($protectionContainer.Role -eq "Primary")
{
$protectionEntities = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $protectionContainer
Assert-NotNull($protectionEntities)
@@ -247,7 +247,7 @@ function Test-StorageMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 0 }
+ Assert-True { $servers.Count -gt 1 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -256,25 +256,34 @@ function Test-StorageMapping
}
# Enumerate Storages
- $storages = Get-AzureSiteRecoveryStorage -Server $servers[0]
- Assert-NotNull($storages)
- Assert-True { $storages.Count -gt 0 }
- foreach($storage in $storages)
+ $storagesOnPrimary = Get-AzureSiteRecoveryStorage -Server $servers[0]
+ Assert-NotNull($storagesOnPrimary)
+ Assert-True { $storagesOnPrimary.Count -gt 0 }
+ foreach($storage in $storagesOnPrimary)
+ {
+ Assert-NotNull($storage.Name)
+ Assert-NotNull($storage.ID)
+ }
+
+ $storagesOnRecovery = Get-AzureSiteRecoveryStorage -Server $servers[1]
+ Assert-NotNull($storagesOnRecovery)
+ Assert-True { $storagesOnRecovery.Count -gt 0 }
+ foreach($storage in $storagesOnRecovery)
{
Assert-NotNull($storage.Name)
Assert-NotNull($storage.ID)
}
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-True { $storageMappings.Count -eq 0 }
# Create StorageMapping
- $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storages[0] -RecoveryStorage $storages[1]
+ $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storagesOnPrimary[0] -RecoveryStorage $storagesOnRecovery[0]
WaitForJobCompletion -JobId $job.ID
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-NotNull($storageMappings)
Assert-True { $storageMappings.Count -eq 1 }
Assert-NotNull($storageMappings[0].PrimaryServerId)
@@ -296,7 +305,7 @@ function Test-StorageUnMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 0 }
+ Assert-True { $servers.Count -gt 1 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -305,7 +314,7 @@ function Test-StorageUnMapping
}
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-NotNull($storageMappings)
Assert-True { $storageMappings.Count -eq 1 }
Assert-NotNull($storageMappings[0].PrimaryServerId)
@@ -318,7 +327,7 @@ function Test-StorageUnMapping
WaitForJobCompletion -JobId $job.ID
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-True { $storageMappings.Count -eq 0 }
}
@@ -335,7 +344,7 @@ function Test-NetworkMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 0 }
+ Assert-True { $servers.Count -gt 1 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -344,25 +353,34 @@ function Test-NetworkMapping
}
# Enumerate Networks
- $networks = Get-AzureSiteRecoveryNetwork -Server $servers[0]
- Assert-NotNull($networks)
- Assert-True { $networks.Count -gt 0 }
- foreach($network in $networks)
+ $networksOnPrimary = Get-AzureSiteRecoveryNetwork -Server $servers[0]
+ Assert-NotNull($networksOnPrimary)
+ Assert-True { $networksOnPrimary.Count -gt 0 }
+ foreach($network in $networksOnPrimary)
+ {
+ Assert-NotNull($network.Name)
+ Assert-NotNull($network.ID)
+ }
+
+ $networksOnRecovery = Get-AzureSiteRecoveryNetwork -Server $servers[1]
+ Assert-NotNull($networksOnRecovery)
+ Assert-True { $networksOnRecovery.Count -gt 0 }
+ foreach($network in $networksOnRecovery)
{
Assert-NotNull($network.Name)
Assert-NotNull($network.ID)
}
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-True { $networkMappings.Count -eq 0 }
# Create NetworkMapping
- $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networks[0] -RecoveryNetwork $networks[1]
+ $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networksOnPrimary[0] -RecoveryNetwork $networksOnRecovery[0]
WaitForJobCompletion -JobId $job.ID
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-NotNull($networkMappings)
Assert-True { $networkMappings.Count -eq 1 }
Assert-NotNull($networkMappings[0].PrimaryServerId)
@@ -450,7 +468,7 @@ function Test-NetworkUnMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 0 }
+ Assert-True { $servers.Count -gt 1 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -459,7 +477,7 @@ function Test-NetworkUnMapping
}
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-NotNull($networkMappings)
Assert-True { $networkMappings.Count -eq 1 }
Assert-NotNull($networkMappings[0].PrimaryServerId)
@@ -474,7 +492,7 @@ function Test-NetworkUnMapping
WaitForJobCompletion -JobId $job.ID
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
Assert-True { $networkMappings.Count -eq 0 }
}
@@ -1142,7 +1160,7 @@ function Test-EnableProtection
# Validate_EnableProtection_WaitForCanFailover
if ($Validate_EnableProtection_WaitForCanFailover -eq $true)
{
- WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID
+ WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID 600
}
return;
@@ -1206,23 +1224,171 @@ function Test-DisableProtection
Assert-NotNull($job) "No VM found for Disable Protection"
}
+<#
+.SYNOPSIS
+Recovery Services San E2E test
+#>
+function Test-SanE2E
+{
+ param([string] $vaultSettingsFilePath)
+
+ # Import Azure Site Recovery Vault Settings
+ Import-AzureSiteRecoveryVaultSettingsFile $vaultSettingsFilePath
+
+ $servers = Get-AzureSiteRecoveryServer
+ $primaryVmm = $servers[0]
+ $recoveryVmm = $servers[1]
+ $storagePri = Get-AzureSiteRecoveryStorage -Server $primaryVmm
+ $storageRec = Get-AzureSiteRecoveryStorage -Server $recoveryVmm
+
+ # Find primary array and pool.
+ foreach($storage in $storagePri)
+ {
+ # Find primary array
+ if ($storage.Name.Contains("HRMPROSVM01"))
+ {
+ $primaryArray = $storage
+
+ foreach($pool in $primaryArray.StoragePools)
+ {
+ # Find primary pool
+ if ($pool.Name.Contains("SanOneSDKPrimaryPool"))
+ {
+ $primaryStoragePool = $pool
+ break
+ }
+ }
+ }
+ }
+
+ # Find recovery array and pool.
+ foreach($storage in $storageRec)
+ {
+ # Find recovery array
+ if ($storage.Name.Contains("HRMDRSVM01"))
+ {
+ $recoveryArray = $storage
+
+ foreach($pool in $recoveryArray.StoragePools)
+ {
+ # Find recovery pool
+ if ($pool.Name.Contains("SanOneSDKRecoveryPool"))
+ {
+ $recoveryStoragePool = $pool
+ break
+ }
+ }
+ }
+ }
+
+ # Pair pools
+ $job = New-AzureSiteRecoveryStoragePoolMapping -PrimaryStorage $primaryArray -PrimaryStoragePoolId $primaryStoragePool.Id -RecoveryStorage $recoveryArray -RecoveryStoragePoolId $recoveryStoragePool.Id
+ Assert-NotNull($job);
+
+ $protectionContainers = Get-AzureSiteRecoveryProtectionContainer
+ Assert-True { $protectionContainers.Count -gt 0 }
+ Assert-NotNull($protectionContainers)
+ foreach($protectionContainer in $protectionContainers)
+ {
+ Assert-NotNull($protectionContainer.Name)
+ Assert-NotNull($protectionContainer.ID)
+
+ # Find primary cloud
+ if ($protectionContainer.Name.Contains("SanPrimaryCloud"))
+ {
+ $primaryContainer = $protectionContainer
+ }
+
+ # Find recovery cloud
+ if ($protectionContainer.Name.Contains("SanRecoveryCloud"))
+ {
+ $recoveryContainer = $protectionContainer
+ }
+ }
+
+ # Create protection profile
+ $pp = New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider San -PrimaryContainerId $primaryContainer.ID -RecoveryContainerId $recoveryContainer.ID -PrimaryArrayId $primaryArray.ID -RecoveryArrayId $recoveryArray.ID
+
+ # Start cloud pairing
+ $job = Start-AzureSiteRecoveryProtectionProfileAssociationJob -ProtectionProfile $pp -PrimaryProtectionContainer $primaryContainer -RecoveryProtectionContainer $recoveryContainer
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600
+
+ # Get protection Entity (RG)
+ $pe = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $primaryContainer
+
+ # Enable RG
+ $job = Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $pe -Protection Enable -RPO 0 -Replicationtype Async -RecoveryArrayId $recoveryArray.ID
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900
+
+ # Get protection Entity (RG) again after enable
+ $pe = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $primaryContainer
+
+ # Test failover RG
+ $job = Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $pe -WaitForCompletion -Direction PrimaryToRecovery
+ Assert-NotNull($job);
+
+ # Resume Job on manual action
+ $job = Resume-AzureSiteRecoveryJob -Id $job.ID
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900
+
+ # Planned failover RG
+ $job = Start-AzureSiteRecoveryPlannedFailoverJob -ProtectionEntity $pe -Direction PrimaryToRecovery
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900
+
+ # Reverse RG
+ $job = Update-AzureSiteRecoveryProtection -ProtectionEntity $pe -Direction RecoveryToPrimary
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600
+
+ # UnPlanned failover RG
+ $job = Start-AzureSiteRecoveryUnPlannedFailoverJob -ProtectionEntity $pe -Direction RecoveryToPrimary
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900
+
+ # Reverse RG
+ $job = Update-AzureSiteRecoveryProtection -ProtectionEntity $pe -Direction PrimaryToRecovery
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600
+
+ # Disable RG
+ $job = Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $pe -Protection Disable -DeleteReplicaLuns -RecoveryContainerId $recoveryContainer.ID
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900
+
+ # Start cloud unpairing
+ $job = Start-AzureSiteRecoveryProtectionProfileDissociationJob -ProtectionProfile $pp -PrimaryProtectionContainer $primaryContainer -RecoveryProtectionContainer $recoveryContainer
+ Assert-NotNull($job);
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600
+
+ # UnPair pools
+ $job = Remove-AzureSiteRecoveryStoragePoolMapping -PrimaryStorage $primaryArray -PrimaryStoragePoolId $primaryStoragePool.Id -RecoveryStorage $recoveryArray -RecoveryStoragePoolId $recoveryStoragePool.Id
+ Assert-NotNull($job);
+}
+
<#
.SYNOPSIS
Recovery Services Enable Protection Tests
+Wait for CanFailover state
+Usage:
+ WaitForCanFailover pcId peId
+ WaitForCanFailover pcId peId secondsToWait
#>
function WaitForCanFailover
{
- param([string] $pcId, [string] $peId)
- $count = 20
+ param([string] $pcId, [string] $peId, [Int] $NumOfSecondsToWait = 120)
+
+ $timeElapse = 0;
+ $interval = 5;
do
{
- Start-Sleep 5
+ Start-Sleep $interval
+ $timeElapse = $timeElapse + $interval
$pes = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainerId $pcId;
- $count = $count -1;
-
- Assert-True { $count -gt 0 } "Job did not reached desired state within 5*$count seconds."
-
+ Assert-True { $timeElapse -lt $NumOfSecondsToWait } "Job did not reached desired state within $NumOfSecondsToWait seconds."
} while(-not ($pes[0].CanFailover -eq $true))
}
@@ -1249,3 +1415,18 @@ function WaitForJobCompletion
Assert-True { $endStateDescription -ccontains $job.State } "Job did not reached desired state within $NumOfSecondsToWait seconds."
}
+
+<#
+.SYNOPSIS
+Wait for job completion and validate the job
+Usage:
+ WaitAndValidatetheJob -JobId $job.ID
+ WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 10
+#>
+function WaitAndValidatetheJob
+{
+ param([string] $JobId, [Int] $NumOfSecondsToWait = 120)
+ WaitForJobCompletion -JobId $JobId -NumOfSecondsToWait $NumOfSecondsToWait
+ $job = Get-AzureSiteRecoveryJob -Id $job.ID
+ Assert-True { $job.State -eq "Succeeded" }
+}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials
index 8cf54d72be01..80ca1db130c2 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials
@@ -1,17 +1 @@
-
-
- a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba
- HyperVRecoveryManagerVault
- Hosters-FC-BVT-Vault
- MIIKogIBAzCCCmIGCSqGSIb3DQEHAaCCClMEggpPMIIKSzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjlStiPHQg9+QICB9AEggTYLwka9iU+N3DBRbOyHcxT4lZmynM2/H2xbBIMjOAJ51N5MdYd0utYYhRVn4zpY3UOMDyDvE0n35ed7LXHrjurMMGPc3bf7ToRHzd3HA//n+N4WmTbCsrFbbxljIdnlULEG/rfjMAPfJkIJOnDIj1kRgGSBf7LO0JM+gJri/cttZt026ld1eUeCxZOUgw+CGFl3skwhaqfPT1lFQpzOLOjY66C2ppLo9xbm+Z9j/3B4d54/PTXIFgFGZuYwHkouqTS19XuhmfuRXJPwPfEN/4w4tmmlamQG5B2n+Ug6xa6j9XFhGVj+w2kaBlxuQPlK8M1VJGNn9ZXXQeCVf4IoxqIaXZZ5TAwiEEeG3NGUhZauL6tmjjAbi6dAtYjzNBy8eqvvb/230M5C84LmwnGjWqCkmaDmv2yAb94mTbnzQIP6I2xon3UGPXpOdxY3CIo/kMFE+vOU560EBOPCLTYquRXs/JF+xKd7IUIauFCAamnJVTW8FCepQtyZw6GEBX345GIpnyJrCQ7zHW4rhiWtIrKgiJGT2JcveFbVoWAu1Gx6WTdRvpoTG4wsbhRxj4Ds1Tsvo4W9g7tBNGFptnPPyxRycH0BgCLxyne8Zfszxlw1w0BZrcOU2fLH+bWhxSd0ZyUd/xVgQzk08mJllV3RiWAdpB7+Y9ZYxgcnNgRVctr08ZMYhbF4eSzPK59EwoCeDlwlTQeNyD2Szk+6iuJ9Wft9D9zX3/YFZZxyo+SnW4cu9VqGY5ZjxnqW3RdxafBcL7mzm/fi7Kdld0bLdosb/WsJi9VtkHOrxSLnux1fG6ITG9EQIKLH98Fa2/DbB3QSycV3xWVt64ikTfKOiC0DfOvQplKHXdr8mDFvzPw4NW1ElJ/k5Twg/lF1yacfXxyw2YEOoSCwCBOWYtsh1+j5A2RWYrNs3Ov/zZw0IEoZDvhW5In6pa2Os9l/7hRNWuVEkfmnmn6LK6NDBdqvWiGEUUHxs23a3od3mOxI1VZVf7xahIHroQqZmIKDAZDaM6lBgTc6UaDl2lLQF21odXo5VN7p9maLYSgNa1mgDGfq6G+6PRIRB1cXJ5V+tn8823PbG9pMaqfY7rAgzy/rs2ombe15DyAamZ8qucdINJpB1Txi5Q7QbUU+TZeYKPUNbuxZKdWFkWIVO+gisApBi12UfDjvwcozqMtrq/d08nrXZ+XHIh+AWOvmw34dFOCNmqpo/G+RX4OEtVCwl7sIM4WfgY95Z/5Bwgv39MNRSPw3hx0lBm67dB8+NViflLg50LdADmmgcffwiK8/8INpyT1Cm3/pFt3HzsqE/hhvf+T8+b2wloTrXdTT2pr6zkmUni3dL7+e95FLcwYpyfSepdzeGPGe4f88M1cTc2GI5Magr4Su5NjkUzURW8xrdLxZR+7LNhDSYFp0pUktTS//61DewGW1u8jE6viGtwvhFSo4cGS5Bk849CLqox7hfDMGEihf7z20UPGxGC1SKDq+HlKKM3yWrkcVbfOQ4YswHYnoBONGAuRFSONRgNXnU0cj5w7M+44ZR877Ky1hpvqfh8+4UTb6q6qgVfCYYBXZcsCqkJHDYRs1zF99uQcMmEaY9ObvlcaiqPOUfl6mYxe+wkQRFKbVqmTYm7JGDVI7xYs7w81ybZ5fGUiiEZtfDGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsARQBCADAARQA2AEYAQgBBAC0AMgBDAEEAQQAtADQAMgA2AEYALQA5ADUAQgAwAC0AQQAwAEEARABCAEUARQBGAEIANQBDAEMAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQ3BgkqhkiG9w0BBwagggQoMIIEJAIBADCCBB0GCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECObDECIH2IrYAgIH0ICCA/C7ZOqutryXxufFIUfrhikHCOnA9pJEDyn/fp3/KJIrO8oW6a04seWGm8hxOl/lbe8fSpcTPJTaSaw3z5/ACSZQtZQGddjqGmvMVOFldPtyPIsbvZC8WJSQYC/3BrOTRA7dUzLoCHpTSvcQcoKOpvhnqeMqrSbklvFr9xXqPSVeY7tzEThDyEYzFwr9/NvDmizFIR11Bt6N/1Ql8Kc5wsJewYO6KJHhXX+gmf0FHVdRTBmANGmR+Z7XYV76Vu/NMHEQiRBlfhXuZ2JVfLkawB13fseskTyqJ3WXeddV37uCJEllDXvSZ2VjKAG6xYtKJajAoF1zlQ/zcug8q7c/CqXMPrFieGPTUFHO3ZH5qy9rcKn6sD7WiQgdc56IBBGjs+WEG+UZgAJ80QWjLDhOlPnBA3IFyEAqrbOqcxz8rzm94khd3lM0LMv6mn7920hI4w+33HE3995XMbV2EARgsl/hSj+4Z8qGJvA/OrNVnS4cj3KNaGtu3qWCmh1LoA5ddQT/ndihH0Ne939uld49UObFazVx72ZKfxDFIXprLS1ObVXYr0gl2JgBBLrvmJRTbHXpfObLqr7SFi3oNuvhHUDb9Vv82EeGlZg0Tyj0A8VPBNjFQug8LXQCeXeH94LWZxAa51T48kiCWPEc41jwCx6SZ5zD2eeZbn1gx0K6MXnd7AdKxDHQKqPd3O1L/hyhB6Y7hzTrR20EsA+YvgjtnG8GMPjG3RJ0nid92leP2/FUz5R39VhOzVLSfc3+cxQlifi0VI+IzPaDzm7NA4DnBajiWGQDq8TyX0V4z1tk5sKTvHEVrmVszfyaR+PFDclfsJIV8quNpltMiugw6c+ecfQl8FCR7mWdl5CfuRpe631yRov3s5InCjJ2rcUB0CZN5MTCi67JEJCbXToNVbaXp73YorZ36Gg2RdgGq4xfux+F/AlPHN3Z13ojsf/j7oPuyA0Eti/tr9WG5Gj/6Mzs83xRacPBUKdPIRFRx6PzLSVHBoS3tpkCu9V5zN5N1T2boX5nquWgLIgXUa+NxCg2mF9u8pV9jMJgq41OoWdcGkimxYEuC/8ftYO60W7SDukdnBlA87ZJdeDBUDB/cjyBdludrBWH0fy86fXrEGSK3Ydjm9TXKgiGdc7S5MXA8dTl/ToedoHF0BmTdMY+H65uc5h9KkJ41lxoawYClm5RhZR53j0FJJ36Y1gPzS2GZRqXR+FwuDZ0ODEvrLf9aRV6DgZd/xtTGLon13IlopAY/r+Xscu0/aMHzKdo9xtS2IPne4dmMNN/l5jpzeW/O4hYCnLG7uZFFfBfz3bLH1HZCYOQUjraQyQsN5phpUyDgl4IU7cwNzAfMAcGBSsOAwIaBBQ4lvc+o9joslOGjdNDPn06TYmo8gQUR5J5HwDviE87f215rUz3C7nExp8=
-
- accesscontrol.windows.net
- seabvtd2rp1users
- http://windowscloudbackup/m3
-
- mock#ACIK
- RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US
-
-
- 1.0
-
\ No newline at end of file
+63d3030d-0ad0-4c4f-8bce-c95a0a669524HyperVRecoveryManagerVaultvault4RecordingTestsMIIKmgIBAzCCCloGCSqGSIb3DQEHAaCCCksEggpHMIIKQzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhVEsXmyd0GIgICB9AEggTYWPI2tsfWQlNBhVgiPawaqYLtRAlcTz0mUtpx5i9R00O2fQ0IRleYI6vpWmPRNfWXDNIR2znoWoguH4R3LamnCgSoEoRri4pw2Rii71YVcl1w8B4Qf5CphMTY5iqe8mgMuZfydrl2q/O1XuRQR9hW1CRL3RyeO4H/lxBQoNwmHSuxVsTazUFQH3PTgHAqkuDTN18MYgOLDFEZPrNpPFzJ3/QiTuh9ZNAkilZHnsELA4yLaSxP9hR+C6tWpH3EoBbQUaxbn9GXdr/KD5ZqxNny0hep6NrDDzoIHFKX1L9RVD9MIOzi7cYZPkycGo1Ebd5GQBd7QhOfPAU3o4vE++OItI/dLS8VPuL1E6vSbqguxDx5ZOZkQf2BJqzJ91JUffzzJU+Dj0FwN5O/A/bdgtK6JkTHdNCGLRecUFg++Ex0tDiZg/dlsVi6YvSLObPDuZ9gmgMHOZhRQPLn+w0syI2xgf2xDdEyQh7uB7CSsIMkIbXC1w5nFT268QwR67i1ZsWw7j/dcLv9Brlvuzffzc62ZHlcrvu16J1EKmvuLHPYFzbOlWRj0bM56stmqKtw1c26HkFrwfNj1wUcz663VBaOklEuTMSrQXT1AeL9bcdLbZNzRfPuhuYEe4zGyyeCKL5J5N+7lhbEAQPoL1iY46jGH70DfEq0uk+uqdhougKAFnr5WUxzHVE3WSuTVdlO7ovITGlWZY6S7fQFox2jjoacOZCePgVLdoiSfTVGWLLn4/Eqnn0bXlRbczo35Jc4RYTz8wk5IYHyLS8XWnFSTgOLqqNDs2egptUHwWU+zXu0MW3+Ga3obbzU3qsUt2OjLSjVyrfiOwLdnLAH4YMiLgwKsNCwl4+Fp8bpW5fASAYR91Jk+MluM/04GsIcf0pgB6wprFeR99L0cwyjABc0qXGYuksF8rQHfCMYvH5AuYi9uhwX9l7eFSpfvdNsRvNzgEBDuY4QRmcJXPTIvTZB9A+PwezYr4g3GT/xEEOUqD43iBMZq6Pfy8TGiPyAnIPOGh8O4jzljBthm8QU2V1vlKhSa5X/EDECsQmvl69rbvYl6QrD/flcMxDOMJ54+OdjQlqKhfoZIs18o9SPA0wFzEwrfjBFjpcYNTO5iE7I7Uf6VVfFxeH5A1RYRY1nVSJ8av7JNsAwAJUcI+JhcNBzlZ7M+yc6Wvfo3mR0m1tqAq626Wf5DuPBNvRtZ0WIUIjH9ABO9au1SiaWvrRYIA3jZrZx2c9F0TAeg4z0Kg7bc/beSCHyhtH7LNfbemVbGXuuX5/8uOzeaiDhjYHu2YhmwCaz5Qvr7w9+GxIEo594l+bP/pBJIhm27edPyIUmtAYuGw89+UUZcj1s5yUf4qrqtA8ERFz3DpJWc1TRfCz0zNFw0yleJb/fv5fDHKJqbxA0kEPg4ihQoLcPWoJhLpTMhkQQja23ieSixB7m1wtKt978eS2HHFvNVc5A9RIQe3W4j51vvmZ/BU2R+s3uJTEZO63TI/txYCoYjuxz0tf77yBCKnLBMVRGuR4Rvzqech5gfGUijOcKMyBZ2tvNM2U/noB+zrgZ5OnjlS7mrSZ7qEP1sYXTeO08+aWrITChvxAzEkTBrlPfRExJzOWK+jTQw1ZMPBUvJErTV2CUX0PYk/7nHKOopZ71bQX84jGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsARABBADcAMwA1ADQAOABCAC0AMgA1ADQARQAtADQAOAA0ADIALQBCAEYAOAAzAC0AQgA2AEYAOQBBADAANQAyAEEARgBFADAAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQvBgkqhkiG9w0BBwagggQgMIIEHAIBADCCBBUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECJ60+hDrgR8DAgIH0ICCA+h15qYAkxVOvWrR11Yd7UOmo06UAtN+2dtf+lWorT21gEmKFMlpDSnKbQM6ctV9XFctTKPCN3qCOWcGxuR4xmINUR5XhdYTOe9+I7Vsm4/q2fKSn4sWwBcZ4gIHT+O7nobHiVqEri/cbjnN41kOgg9TcKKk+Mp0M4EySV5FQ6XjOj6jcVJzngTzFLxrnmMI8nh+QsG8voFHNWOEu1SKPR7DJQbgVLtbr/W2hLSlIEVYSMoONVJvxKgNw15KD3UP2BPFZM55xHopAYRBMOfsl3l9b6SJOjDFyCcbtljtt6z6z9Q/f6v4hyUcQ64IYL5iy+Wg+/WugNSVHnp8mYmG/SWpWzZq9YiosLsHdzOdT7S9yAptdUMu1uzHPacJ9IKyIgCilPieCV1qHQWPxxocax4uKjpVe+vb7+7MCpEdk9QfSLDJf3G0fYTuA9tZ9a+CJR2XRV+6EBmcSsefqwKTu5mfOxf3KOrTYpqB7yK0KwuxEKHkBxRVuLmqPbq9U5AMdYgrbPVqmlSXgbF1dIexHydFkx2/ECSgQOs0+F9jqrI7uWsss7qoc+Is6JbAAB3iLJLG0YyLVLMHKX6tptFN7BLa0z7Eer8peherd50uy+ezhmmi8vr8PwNTl0BnY7ixOPjaJ5NXoTREZXO65AsMvz5jhWXcTCTkhvnHn0bZmp7wlJua6CABPAWnBhsxSgIJoCrdnNsVGW4s2iKzmnQVYvYfGPfRv3gBqZRdzYmThkO1aRjywdmcLLgqjw+cxo8xTIFsWGQO2OylguFjTltEERH2g3b5/0W46qDzwMLDujnyDYA48rjIUiedXOFDTWhxpDHqV9eK9IKIPaA6WYUXqiutG/7GGGf/EjVHdmLTOpvq+GP6tntHXAS4/JGAYTkfoajaqRNhNF+AClR6OySSiPUGsR6tCuujXmeLAMZtnSCJ5nskSsdIILKIHrLh+Ltwu7kwtC29hY/4whTjUXHM/Y3noryoqobP/hxucuzKBTSPPAgT1Y8/6lI6/sy/rtJ1tobGVKAObLybO27ivceCDP+EB/lBgIeFFa6Dxr/tqqIyTLIT78YzPGhx6h+qxU6Iu1N9LWy+aGJS6OkNeJMKhKAHAqten7Px151MHSWY4q7NjJnYKKXzSUGAxGN5Z6SukBCWgkL9m+1807alacSX8/ZPAwm5iGqbUika+jolZ1D/oiFO1JgreH4zNKd9DVrOjcfZObPJWvVhlCqp4DtQSOepooDVJf5X39IMqUUrWB5dQc0QoChIUfI8bzyQf6F+M7UXEgwRmslB3He/mfbcY1O6szkxrMP4McHKQuj33IRTf456UuVYXIWUMDcwHzAHBgUrDgMCGgQUiblTVSd3CXgIAd8YnilibQ969EQEFPnE5IR2QTrZpUcQZlrt4m5l3T/eaccesscontrol.windows.netseabvtd2rp1usershttp://windowscloudbackup/m32tI2v7RwUyOaD8LkBcaLnQ==RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US1.0
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json
index 53a8c4bb4fad..c6f92e46347f 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "334fdf1ad69fceee879f79e713de00a5"
+ "212f1bbcbc33397a90a859bcc8429139"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:22 GMT"
+ "Thu, 16 Apr 2015 19:08:53 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "75dd6e349783c4fa94345c5f252fb0a2"
+ "7e210873e030301696f3657bbbdd672f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:23 GMT"
+ "Thu, 16 Apr 2015 19:08:54 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "c9987cd9eaddcce8aaa6a5264cee9b2b"
+ "86a479af4df1345cb8b51c213c91a377"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:29 GMT"
+ "Thu, 16 Apr 2015 19:08:59 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "03822990adc1c432af40232928c50e7a"
+ "9d618ec0ade13693a23c36adcc78dab4"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:37 GMT"
+ "Thu, 16 Apr 2015 19:09:10 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "85b33729332ec141860fe4d44711a255"
+ "7018de3da5b23c97b812cfa01483a0e3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:46 GMT"
+ "Thu, 16 Apr 2015 19:09:18 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "8713a2ba1506ce93a916abd9f5d46902"
+ "619be7dcf4fe3dad9ba2e0a765dfddad"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:53 GMT"
+ "Thu, 16 Apr 2015 19:09:28 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,34 +262,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a06405d33d09cdc992cf9b5694c66091"
+ "faeaea80a11d3440a18b2b30667fa2a7"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:01 GMT"
+ "Thu, 16 Apr 2015 19:09:37 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -303,34 +303,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "e018563c9b62ce10902db65c70c41f5f"
+ "8512fa39652439818048b73e9b6e1f52"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:08 GMT"
+ "Thu, 16 Apr 2015 19:09:44 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -344,34 +344,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "b46d871773f2c696a512978bd611662f"
+ "302a7cabbf0a32558f3caab52746ab09"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:15 GMT"
+ "Thu, 16 Apr 2015 19:09:53 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -385,34 +385,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "56d93bea6316c6fcbe3bc75897d10073"
+ "bf7aa3f896253b65aff8f3803872ed08"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:23 GMT"
+ "Thu, 16 Apr 2015 19:10:03 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -426,34 +426,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "08b28dc62655c9f49559e55e029b43b5"
+ "68989f0004653a26b743412b0bfa8ece"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:31 GMT"
+ "Thu, 16 Apr 2015 19:10:12 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -467,34 +467,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "da0373bd6184cdb5974707bc6792bbac"
+ "42962f21cd13321589f7f9ded5ce913d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:38 GMT"
+ "Thu, 16 Apr 2015 19:10:22 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -508,34 +508,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a4403f11a2f9cacb96dfe23191d0c4ae"
+ "303a46b3818835a1a831051b164e873f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:46 GMT"
+ "Thu, 16 Apr 2015 19:10:31 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -549,34 +549,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "727a321b9a9dc7e3baadf46eb944425a"
+ "66d593cf76ff3c578f75ab1cc995d625"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:53 GMT"
+ "Thu, 16 Apr 2015 19:10:40 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -590,34 +590,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "747ca88866b6c620a8f6be6dd4f34b8f"
+ "42929e8e425d378bb402c01ddb3ed981"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:01 GMT"
+ "Thu, 16 Apr 2015 19:10:49 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -631,34 +631,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "c4b140ea7ce7cf458af051ee5cbe7159"
+ "baad5c66a3a63ab5b2ecdede587c8058"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:08 GMT"
+ "Thu, 16 Apr 2015 19:10:57 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -672,34 +672,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "5e021593dbcdc383a71d599ea730e775"
+ "3d9a6e3d0c603568b957af7b29b35de1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:16 GMT"
+ "Thu, 16 Apr 2015 19:11:07 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -713,34 +713,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "76304f1b345fc02cbc147a2ed775311e"
+ "dcb907d49df6301bb59c63eba3b48430"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:23 GMT"
+ "Thu, 16 Apr 2015 19:11:16 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -754,34 +754,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "bbbc098700adcdb195e6ad123732a571"
+ "ff5ad5b70aa1361abd4713fcaef7aa99"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:31 GMT"
+ "Thu, 16 Apr 2015 19:11:24 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -795,116 +795,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "c4f4db536efecb338d1be8bad3afab63"
+ "6b2c48717bbe328aa1d5405dd77fdc36"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:38 GMT"
+ "Thu, 16 Apr 2015 19:11:28 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "33fa781ef23bcba3b3a3480eb9ef5ce3"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:07:45 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "2f8f523d48acc4bb86825bf0725eb327"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:07:48 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -912,7 +830,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P"
+ "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -921,10 +839,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n \r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n \r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2814"
+ "912"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -939,20 +857,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P"
+ "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P"
],
"x-ms-request-id": [
- "5f3e15546504c177bbedd9205ca7eb3e"
+ "83ba01c2ac463356ab54e00f3b4b5c54"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:27 GMT"
+ "Thu, 16 Apr 2015 19:08:58 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -965,149 +883,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionProfiles/CreateAndAssociate?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Qcm9maWxlcy9DcmVhdGVBbmRBc3NvY2lhdGU/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionProfiles/CreateAndAssociate?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Qcm9maWxlcy9DcmVhdGVBbmRBc3NvY2lhdGU/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "POST",
- "RequestBody": "\r\n \r\n cloudOn19\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowReplicaDeletion>true</AllowReplicaDeletion>\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath i:nil=\"true\" />\r\n <OfflineReplicationImportPath i:nil=\"true\" />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileInput>\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n \r\n",
+ "RequestBody": "\r\n \r\n phase2RecoveryCloud\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowReplicaDeletion>true</AllowReplicaDeletion>\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath i:nil=\"true\" />\r\n <OfflineReplicationImportPath i:nil=\"true\" />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileInput>\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n \r\n",
"RequestHeaders": {
"Content-Type": [
"application/xml"
],
"Content-Length": [
- "1598"
+ "1608"
],
"Accept": [
"application/xml"
],
"Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700329880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721929880)\\/\",\"ClientRequestId\":\"4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NFrR9g+7oUyzw/GqjxaQW75rYnPsx7pfpflIt7eN8oA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
- ],
- "x-ms-client-request-id": [
- "4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "629"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P"
- ],
- "x-ms-request-id": [
- "4005aa7ab540c75e829b913267be9ff0"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:05:31 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "edf89d2f-54db-49f6-b76f-0ede68f223d1-2015-02-23 15:05:38Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2501"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "edf89d2f-54db-49f6-b76f-0ede68f223d1-2015-02-23 15:05:38Z-P"
- ],
- "x-ms-request-id": [
- "88a9da25ad26cec6bf209034ca93c265"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:05:39 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
+ "{\"NotBeforeTimestamp\":\"\\/Date(1429207740573)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429812540573)\\/\",\"ClientRequestId\":\"66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IiZZ5JXRqcpV8i77OYDWKoTkL3SsWvhm25iuQCgBdFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
],
"x-ms-client-request-id": [
- "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P"
+ "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1116,10 +910,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2501"
+ "2519"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1134,20 +928,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P"
+ "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P"
],
"x-ms-request-id": [
- "6ca1e7d743bccd2f89d6655cd6e9bc43"
+ "c51d6b1fdb0938bca1d468d4cd3b272d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:48 GMT"
+ "Thu, 16 Apr 2015 19:09:04 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1160,8 +954,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1169,7 +963,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P"
+ "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1178,10 +972,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14177"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1196,20 +990,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P"
+ "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P"
],
"x-ms-request-id": [
- "67bd9d18c315cc0d9986c2b95ac7dc36"
+ "a3c13e6035483a62bf4d034587f00b2f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:05:55 GMT"
+ "Thu, 16 Apr 2015 19:09:12 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1222,8 +1016,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1231,7 +1025,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P"
+ "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1240,10 +1034,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14177"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1258,20 +1052,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P"
+ "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P"
],
"x-ms-request-id": [
- "c479be42d7e0cf4ea18d7fd5e5d3eae1"
+ "40835dba06493d8399bdcb05b85ce51e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:02 GMT"
+ "Thu, 16 Apr 2015 19:09:21 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1284,8 +1078,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1293,7 +1087,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P"
+ "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1302,10 +1096,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14177"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1320,20 +1114,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P"
+ "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P"
],
"x-ms-request-id": [
- "1729097f8485c71ba100f1a2b73b169c"
+ "6c55b66646ba3cb0ace6b68eafcf9354"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:10 GMT"
+ "Thu, 16 Apr 2015 19:09:30 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1346,8 +1140,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1355,7 +1149,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P"
+ "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1364,10 +1158,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14177"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1382,20 +1176,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P"
+ "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P"
],
"x-ms-request-id": [
- "4bd544ed18abcb5aa3fe2d8c7f74c8ee"
+ "6f446d7b2cbc3203ae9cadce06f05fe2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:17 GMT"
+ "Thu, 16 Apr 2015 19:09:38 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1408,8 +1202,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1417,7 +1211,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P"
+ "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1426,10 +1220,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14177"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1444,20 +1238,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P"
+ "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P"
],
"x-ms-request-id": [
- "e521ad428324cd408165758cee48b7e6"
+ "f40d28ed9b583ed6a5ac6170f1553e2c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:25 GMT"
+ "Thu, 16 Apr 2015 19:09:48 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1470,8 +1264,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1479,7 +1273,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P"
+ "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1488,10 +1282,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14193"
+ "14194"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1506,20 +1300,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P"
+ "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P"
],
"x-ms-request-id": [
- "3fe8b46c1a96cc25b0a7006f0e1b71ac"
+ "f93cd2856c483249bf4320cd9b6480e9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:32 GMT"
+ "Thu, 16 Apr 2015 19:09:56 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1532,8 +1326,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1541,7 +1335,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P"
+ "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1550,10 +1344,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:01Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14193"
+ "14210"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1568,20 +1362,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P"
+ "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P"
],
"x-ms-request-id": [
- "e7e6814fa61dc69d9797e07b98255c3c"
+ "c73827572faf325fbd7064a6a5f159da"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:40 GMT"
+ "Thu, 16 Apr 2015 19:10:06 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1594,8 +1388,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1603,7 +1397,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P"
+ "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1612,10 +1406,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:08Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14193"
+ "14226"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1630,20 +1424,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P"
+ "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P"
],
"x-ms-request-id": [
- "3049ecfa9f03ce6a845aa15bfebd8c10"
+ "7bf5df4b117a36dbb7c98b6fb205bed7"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:47 GMT"
+ "Thu, 16 Apr 2015 19:10:15 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1656,8 +1450,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1665,7 +1459,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P"
+ "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1674,10 +1468,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:17Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14209"
+ "14231"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1692,20 +1486,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P"
+ "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P"
],
"x-ms-request-id": [
- "8b1cde7e6d72cb35832c9a87af82e410"
+ "886bebcbfe7b3670b15553159f4a5eb5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:06:54 GMT"
+ "Thu, 16 Apr 2015 19:10:24 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1718,8 +1512,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1727,7 +1521,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P"
+ "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1736,10 +1530,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:17Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14214"
+ "14231"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1754,20 +1548,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P"
+ "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P"
],
"x-ms-request-id": [
- "6ef9058cb6a7c4a788b7b078a693a833"
+ "dade720da71b3698969f21711a1fd03d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:03 GMT"
+ "Thu, 16 Apr 2015 19:10:33 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1780,8 +1574,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1789,7 +1583,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P"
+ "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1798,10 +1592,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:40Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:40Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14214"
+ "14258"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1816,20 +1610,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P"
+ "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P"
],
"x-ms-request-id": [
- "5f293a9e110accb0b12000ea351924f8"
+ "7ac9c3ea4a2d31388baaf2e00c9f7dfe"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:10 GMT"
+ "Thu, 16 Apr 2015 19:10:42 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1842,8 +1636,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1851,7 +1645,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P"
+ "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1860,10 +1654,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:47Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14214"
+ "14273"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1878,20 +1672,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P"
+ "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P"
],
"x-ms-request-id": [
- "6ac8bf9a1106cfddb7c6748aab2fde71"
+ "6b70456d37f73b3fa65afd37f0f76a9c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:17 GMT"
+ "Thu, 16 Apr 2015 19:10:51 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1904,8 +1698,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1913,7 +1707,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P"
+ "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1922,10 +1716,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:21Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:18Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14240"
+ "14294"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1940,20 +1734,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P"
+ "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P"
],
"x-ms-request-id": [
- "8fb0ee1373a3c0e783ce51e56e05de86"
+ "bd76370c23433c3080e322a85dbaa4e8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:24 GMT"
+ "Thu, 16 Apr 2015 19:11:00 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1966,8 +1760,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1975,7 +1769,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P"
+ "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1984,10 +1778,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14256"
+ "14294"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -2002,20 +1796,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P"
+ "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P"
],
"x-ms-request-id": [
- "0b8b83ebffe1c1df959af35faadc15f6"
+ "022c3fdf92e9350899ef0d7c10db62e3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:31 GMT"
+ "Thu, 16 Apr 2015 19:11:09 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -2028,8 +1822,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2037,7 +1831,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P"
+ "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -2046,10 +1840,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:36Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14271"
+ "14294"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -2064,20 +1858,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P"
+ "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P"
],
"x-ms-request-id": [
- "01c3742c8bdac323a1a7b84276562a2e"
+ "732c1f3ad8fb38a08be828e3226c6f6d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:40 GMT"
+ "Thu, 16 Apr 2015 19:11:17 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -2090,8 +1884,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2099,7 +1893,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P"
+ "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -2108,10 +1902,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2/23/2015 3:07:42 PM\r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:41Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:41.9629965Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2015-04-16T19:11:23Z\r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n Succeeded\r\n Completed\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:11:22Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14290"
+ "14308"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -2126,20 +1920,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P"
+ "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P"
],
"x-ms-request-id": [
- "d537db9df140c732b85a2e31670df81f"
+ "00e5ffad4dc937cf87dbb79a4015a1d4"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:48 GMT"
+ "Thu, 16 Apr 2015 19:11:26 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -2152,8 +1946,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2161,7 +1955,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P"
+ "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -2170,10 +1964,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2/23/2015 3:07:42 PM\r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:41Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:41.9629965Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2015-04-16T19:11:27Z\r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n Succeeded\r\n Completed\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:11:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14290"
+ "14308"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -2188,20 +1982,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P"
+ "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P"
],
"x-ms-request-id": [
- "7b0b2be6e69bce7fa790135ee31d7dc8"
+ "fdd7355a3c3f3e73bdae862fd57d3e43"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:07:50 GMT"
+ "Thu, 16 Apr 2015 19:11:30 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -2216,6 +2010,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json
index 5eaede5d1d9e..bec286d0b61f 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "9a70757f6ca8c7c4acfedd3aad5189ff"
+ "72baf59cee7932f0b2ecf07ff54a70e6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:14:33 GMT"
+ "Thu, 16 Apr 2015 14:55:36 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "2fa5494425ddcf7f81701efd94d99983"
+ "de09bd88631c38a29e73fed71ff2da59"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:14:35 GMT"
+ "Thu, 16 Apr 2015 14:55:37 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "556d67d7ec4ac8b8b2de981a53b76c45"
+ "c8b65f5d82c23223905658427eff4bf8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:14:40 GMT"
+ "Thu, 16 Apr 2015 14:55:41 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,1588 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "67157058d486c0fa98a02a8077f76d62"
+ "a8a5635118c93d3a8702588ebea09f7a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:14:43 GMT"
+ "Thu, 16 Apr 2015 14:55:44 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "8a640dbf7405c4e685da7d15243bc80f"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:46 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "228af3737b10c409a294811f9dc2903d"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:54 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "b528e467da35c953beaa8652da90ee0c"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:02 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "59382b413e43c1c8a43a0c338809dcfc"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:10 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "b08e17d1ca93c93a9dcce5272b5389ca"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:19 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "cc2925d570dac1a6ac0d17543416bb51"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:26 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "798a17cbbcc6c7fb801668905ed0838b"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:34 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "d3bec877b341c26d86434d7c0c2eecef"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:42 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "2eb3b446489dc0329e61f7285a7b21ed"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:50 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "3101a057b25ec28093b9a1e5b53f58fb"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:58 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "a1d471335b5bcf45ba06d35a7eaacba0"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:06 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "fa0a64874af5c8a78b736611cf760488"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:13 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "db76b9f73405c0c3aef0b7ef0f697340"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:21 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "ce398f2370d1c0c8bfc985123fcb91f6"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:28 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "c49ff4bbad2fc829abf87f54c0d881d2"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:30 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "2f46f78f-8b00-404c-a3c4-8165b0cde7cb-2015-02-23 15:14:36Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n Primary\r\n \r\n \r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n Recovery\r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "6178"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "2f46f78f-8b00-404c-a3c4-8165b0cde7cb-2015-02-23 15:14:36Z-P"
- ],
- "x-ms-request-id": [
- "7c8fd1191a66c7ac83aac8f30c2f4cbc"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:39 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers/774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzLzc3NDg1OWIwLTE5NjYtNDhjYy05ZGY3LTc1OWM0NDFiN2E4Y180OTRjMDk5My1jYzM1LTRkODQtYjM3My1iZjFhMjNiZTIxZDM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "a9e6bf63-f1fb-4b33-a2db-3637bad89494-2015-02-23 15:14:41Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n Primary\r\n \r\n \r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "3832"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "a9e6bf63-f1fb-4b33-a2db-3637bad89494-2015-02-23 15:14:41Z-P"
- ],
- "x-ms-request-id": [
- "f3cd7bc1d27ccb2aad9b4f169c7f91b6"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:42 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers/dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzL2RjMWVkOWIyLTdiOTAtNDUzNC05OTc3LTEyODgxZDI3OGZiNV8zYjUwMDVlNS0wYWVjLTQ1MWMtOWZiOC1iZGEwMmNiZjE1MTU/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "d4a6e035-4fc6-477e-b7f1-ca2cfe65a65e-2015-02-23 15:14:44Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n Recovery\r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "470"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "d4a6e035-4fc6-477e-b7f1-ca2cfe65a65e-2015-02-23 15:14:44Z-P"
- ],
- "x-ms-request-id": [
- "e239887f3a52c4eb8a2271f6b5a1c693"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:44 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionProfiles/7580cb43-decf-4e66-aee3-40718d11fec8/DissociateAndDelete?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Qcm9maWxlcy83NTgwY2I0My1kZWNmLTRlNjYtYWVlMy00MDcxOGQxMWZlYzgvRGlzc29jaWF0ZUFuZERlbGV0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTEw",
- "RequestMethod": "POST",
- "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n",
- "RequestHeaders": {
- "Content-Type": [
- "application/xml"
- ],
- "Content-Length": [
- "401"
- ],
- "Accept": [
- "application/xml"
- ],
- "Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700887000)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424722487000)\\/\",\"ClientRequestId\":\"647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5n7FfsSRpmHt6/jqAQxXQLtsDBLQFF9YmYv2IwDAGkI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
- ],
- "x-ms-client-request-id": [
- "647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "629"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P"
- ],
- "x-ms-request-id": [
- "fd1293751fb4cf7ab3b7fec1bc8f1333"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:48 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "c3f656e5-0f4d-4bca-82ac-131899dbbd76-2015-02-23 15:14:55Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14283"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "c3f656e5-0f4d-4bca-82ac-131899dbbd76-2015-02-23 15:14:55Z-P"
- ],
- "x-ms-request-id": [
- "ab0d35533f5ac5fe84e539c6129385b2"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:14:56 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "de58f35f-f240-4561-85e6-d7b66e886afa-2015-02-23 15:15:03Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14283"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "de58f35f-f240-4561-85e6-d7b66e886afa-2015-02-23 15:15:03Z-P"
- ],
- "x-ms-request-id": [
- "697130b507d3c12d81ede9e5987a4100"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:03 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "7e509b57-d85d-47c4-bcb0-246e4f9f9a44-2015-02-23 15:15:10Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14283"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "7e509b57-d85d-47c4-bcb0-246e4f9f9a44-2015-02-23 15:15:10Z-P"
- ],
- "x-ms-request-id": [
- "e1babdc7a595c7ac998366b2e1ce05e2"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:12 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "58078d79-30c8-43b2-878b-5d97956f8267-2015-02-23 15:15:20Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:18Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14315"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "58078d79-30c8-43b2-878b-5d97956f8267-2015-02-23 15:15:20Z-P"
- ],
- "x-ms-request-id": [
- "43d2c9c4df6ecfbcae6081996bc4b04c"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:21 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "26353524-4bc4-446d-a6aa-22c44abfffc9-2015-02-23 15:15:27Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14320"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "26353524-4bc4-446d-a6aa-22c44abfffc9-2015-02-23 15:15:27Z-P"
- ],
- "x-ms-request-id": [
- "c15df717df5cc0838df828433d143390"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:28 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "e69c5d08-751b-4c5d-9b80-762a74dd08a2-2015-02-23 15:15:35Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:30Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14346"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "e69c5d08-751b-4c5d-9b80-762a74dd08a2-2015-02-23 15:15:35Z-P"
- ],
- "x-ms-request-id": [
- "de966d49efb2c822b1c66a3d5bb905cd"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:36 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "7ddb1fe7-8f01-4187-85d2-7ebcc13d26d5-2015-02-23 15:15:43Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:43Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:30Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14346"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "7ddb1fe7-8f01-4187-85d2-7ebcc13d26d5-2015-02-23 15:15:43Z-P"
- ],
- "x-ms-request-id": [
- "80a19cee31d0cd2fab71304d47aee392"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:44 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "269417c2-dba5-43a5-af52-c13d9841774a-2015-02-23 15:15:51Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:45Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14362"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "269417c2-dba5-43a5-af52-c13d9841774a-2015-02-23 15:15:51Z-P"
- ],
- "x-ms-request-id": [
- "0d40e74543d4c816b373af57414d059f"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:51 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "c4473072-b870-455a-9c6e-78d468b38533-2015-02-23 15:15:59Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:54Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14378"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "c4473072-b870-455a-9c6e-78d468b38533-2015-02-23 15:15:59Z-P"
- ],
- "x-ms-request-id": [
- "e1d5925f987ec478822220486c7f7a6e"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:15:59 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "ad2d2eb2-930d-4d6a-87be-9ff56ed8c366-2015-02-23 15:16:06Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:02Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14383"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "ad2d2eb2-930d-4d6a-87be-9ff56ed8c366-2015-02-23 15:16:06Z-P"
- ],
- "x-ms-request-id": [
- "4350ad4bd5aec77e93a90a9a7e82084f"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:06 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "c23bc00f-2e0a-4e33-9242-2eef7c672804-2015-02-23 15:16:14Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:02Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "14383"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "c23bc00f-2e0a-4e33-9242-2eef7c672804-2015-02-23 15:16:14Z-P"
- ],
- "x-ms-request-id": [
- "d8b8ebd87255c596831a26f661bb9fb6"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:16:14 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1728,7 +174,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P"
+ "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1737,10 +183,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:15Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n Primary\r\n \r\n \r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n Recovery\r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "14383"
+ "4276"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1755,20 +201,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P"
+ "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P"
],
"x-ms-request-id": [
- "342e7c149ddfce348a5b1aa895af40a8"
+ "7325b66ba1a436fdab7ce52edb4950c2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:16:22 GMT"
+ "Thu, 16 Apr 2015 14:55:40 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1781,8 +227,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers/4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzLzRjODNlMDM4LTdhYmQtNDI4Yi05MTM4LTgxMDY1ZTJiYjU1OV81ODEwMjU3ZS0wOTk0LTRlZDMtYTZhMC1kOTI3MTUzNWUwMTY/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1790,7 +236,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P"
+ "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1799,10 +245,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n 2/23/2015 3:16:26 PM\r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:25Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n Primary\r\n \r\n \r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n",
"ResponseHeaders": {
"Content-Length": [
- "14397"
+ "3842"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1817,20 +263,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P"
+ "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P"
],
"x-ms-request-id": [
- "b7dff51592d7c6f68f4ee167dec8a209"
+ "fee54c1174393911970def31900efbd2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:16:30 GMT"
+ "Thu, 16 Apr 2015 14:55:42 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1843,8 +289,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers/8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzLzhlYzY0ZTc5LWZiOTctNDgzNy1hNmIxLTE5NjhmM2ZjYzYzZl83YTlhOTBmNy0zYzdlLTRmZmMtODgyNS05M2RkOTJiMjA1YmU/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1852,7 +298,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P"
+ "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1861,10 +307,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n 2/23/2015 3:16:26 PM\r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:25Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails><Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task></d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n Recovery\r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n",
"ResponseHeaders": {
"Content-Length": [
- "14397"
+ "479"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1879,20 +325,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P"
+ "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P"
],
"x-ms-request-id": [
- "8de72ecd4f05c2139850eef7ed914e73"
+ "484474bb0e953ef78ae28652f69f02c6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:16:32 GMT"
+ "Thu, 16 Apr 2015 14:55:45 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1907,6 +353,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json
index 0bca95e6abff..6a78ce8abceb 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "1d1019c17253c99f930f98a5ebdee220"
+ "f0bf18f109c832f7b84a60431174cc92"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 14:59:34 GMT"
+ "Thu, 16 Apr 2015 14:35:10 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "f3673093ad3ccd0da603fb74e93cddfc"
+ "247034f5a4b337a1b18e62b99e25979f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 14:59:37 GMT"
+ "Thu, 16 Apr 2015 14:35:12 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "f0d5b33b4d2ec0d5961df25336e4626c"
+ "be8bb5992b59352c8cb7ddc164cd0d0a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 14:59:41 GMT"
+ "Thu, 16 Apr 2015 14:35:16 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -133,7 +133,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-P"
+ "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -142,7 +142,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:32.3262491Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:58.4089848Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:35:13.6360895Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:35:09.4818862Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -160,20 +160,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-P"
+ "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P"
],
"x-ms-request-id": [
- "2665cd63b6efcd65b081c6afa7fe2297"
+ "0632695554a937fa912537ceadc929f6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 14:59:41 GMT"
+ "Thu, 16 Apr 2015 14:35:14 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -186,8 +186,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -195,7 +195,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-P"
+ "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -204,10 +204,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n \r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n \r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2814"
+ "912"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -222,20 +222,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-P"
+ "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P"
],
"x-ms-request-id": [
- "8361915f4af8c08e9c21787ec37db8e3"
+ "85589337eae332baa93f28608d8cbcc5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 14:59:44 GMT"
+ "Thu, 16 Apr 2015 14:35:17 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -250,6 +250,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json
index 2b91f0dd2fe7..fd84bf58c878 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "bed1e29f43efc01e902e597a5ed76b44"
+ "99fd12a291e1325284f730819654b49e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:52 GMT"
+ "Thu, 16 Apr 2015 14:40:02 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "eefa17d596f5c249824c3b48b0bd1829"
+ "96130731d9a73f0c96162af428a62f99"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:53 GMT"
+ "Thu, 16 Apr 2015 14:40:03 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "e8c485a901d7c516b6d618b6d3bcaac9"
+ "e8f05977312b3228bff4807874582865"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:58 GMT"
+ "Thu, 16 Apr 2015 14:40:07 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "979023e66a16c6d7ad0906fb836187ef"
+ "4dd5815e2eb73c86ba5e7e68698abe61"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:00 GMT"
+ "Thu, 16 Apr 2015 14:40:08 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "2a830a0dfe41cc1bacd10c89ca20e54e"
+ "1fe4b4c4506031cea124a9a8157db0de"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:03 GMT"
+ "Thu, 16 Apr 2015 14:40:11 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "0aace19fe72dcf9ab5f724dc8ae7a31c"
+ "6437176130a733ddb687ccd5daaff64b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:11 GMT"
+ "Thu, 16 Apr 2015 14:40:14 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,34 +262,75 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "1790896318bcc93e911c4d3b6121475c"
+ "8325c9339c853631b0d3c9250d9cd5cd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:14 GMT"
+ "Thu, 16 Apr 2015 14:40:22 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/xml"
+ ],
+ "x-ms-version": [
+ "2013-03-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1115"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "6b2918f589983dda98f592ca2e125a40"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 16 Apr 2015 14:40:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -297,7 +338,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P"
+ "71b58f6e-81b5-4d89-bf03-f7d3216a70bd-2015-04-16 14:40:02Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -306,7 +347,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:32.4456534Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:57.8805747Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:40:03.9673752Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:59.8229846Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -324,20 +365,82 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P"
+ "71b58f6e-81b5-4d89-bf03-f7d3216a70bd-2015-04-16 14:40:02Z-P"
+ ],
+ "x-ms-request-id": [
+ "7998e32524853d008e3a9ad478be0302"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 16 Apr 2015 14:40:04 GMT"
+ ],
+ "Server": [
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Networks?api-version=2015-04-10&ServerId=4c83e038-7abd-428b-9138-81065e2bb559",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9NGM4M2UwMzgtN2FiZC00MjhiLTkxMzgtODEwNjVlMmJiNTU5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/xml"
+ ],
+ "x-ms-client-request-id": [
+ "51a19260-fc32-47c8-9303-48a709b5dade-2015-04-16 14:40:06Z-P"
+ ],
+ "x-ms-version": [
+ "2013-03-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n NoIsolation\r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "448"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
+ ],
+ "x-ms-client-request-id": [
+ "51a19260-fc32-47c8-9303-48a709b5dade-2015-04-16 14:40:06Z-P"
],
"x-ms-request-id": [
- "7f3807286690c37fa2a131ac652d02c5"
+ "ad82b2dc8313379cabb18a596577aef2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:57 GMT"
+ "Thu, 16 Apr 2015 14:40:07 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -350,8 +453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Networks?api-version=2015-02-10&ServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTAmU2VydmVySWQ9Nzc0ODU5YjAtMTk2Ni00OGNjLTlkZjctNzU5YzQ0MWI3YThj",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Networks?api-version=2015-04-10&ServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9OGVjNjRlNzktZmI5Ny00ODM3LWE2YjEtMTk2OGYzZmNjNjNm",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -359,7 +462,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P"
+ "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -368,10 +471,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n NoIsolation\r\n \r\n \r\n \r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n NoIsolation\r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n NoIsolation\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "760"
+ "447"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -386,20 +489,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P"
+ "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P"
],
"x-ms-request-id": [
- "78a1d5fca77ac9b6b79887afd3cec23f"
+ "2faa8b31f7393ae1a4b2417203af5c25"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:00 GMT"
+ "Thu, 16 Apr 2015 14:40:09 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -412,8 +515,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -421,7 +524,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P"
+ "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -448,20 +551,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P"
+ "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P"
],
"x-ms-request-id": [
- "0206442e7db3c1c9a09dc9838ead65b7"
+ "0c3ec300a36934d4b61c6b4f223d3256"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:01 GMT"
+ "Thu, 16 Apr 2015 14:40:12 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -474,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -483,7 +586,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P"
+ "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -492,7 +595,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n OK\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n \r\n",
+ "ResponseBody": "\r\n \r\n OK\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"636"
@@ -510,20 +613,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P"
+ "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P"
],
"x-ms-request-id": [
- "e142680245e9c639b0b79e3fcd31ead6"
+ "2e78071eb49a355db66bb891ade11784"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:15 GMT"
+ "Thu, 16 Apr 2015 14:40:25 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -536,10 +639,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
"RequestMethod": "POST",
- "RequestBody": "\r\n SCVMM\r\n <CreateNetworkMappingInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <PrimaryServerId>774859b0-1966-48cc-9df7-759c441b7a8c</PrimaryServerId>\r\n <PrimaryNetworkId>037a6701-37be-406a-ace7-d6e80aaaf1f4</PrimaryNetworkId>\r\n <RecoveryServerId>774859b0-1966-48cc-9df7-759c441b7a8c</RecoveryServerId>\r\n <RecoveryNetworkId>b6177888-5bf1-4f3e-bf5d-84402e0e0229</RecoveryNetworkId>\r\n</CreateNetworkMappingInput>\r\n",
+ "RequestBody": "\r\n SCVMM\r\n <CreateNetworkMappingInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <PrimaryServerId>4c83e038-7abd-428b-9138-81065e2bb559</PrimaryServerId>\r\n <PrimaryNetworkId>d588e46b-1265-4053-9e20-4fc7daed20a5</PrimaryNetworkId>\r\n <RecoveryServerId>8ec64e79-fb97-4837-a6b1-1968f3fcc63f</RecoveryServerId>\r\n <RecoveryNetworkId>cf556a92-6c0b-4d90-8e3e-167a481d4199</RecoveryNetworkId>\r\n</CreateNetworkMappingInput>\r\n",
"RequestHeaders": {
"Content-Type": [
"application/xml"
@@ -551,10 +654,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700184592)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721784592)\\/\",\"ClientRequestId\":\"4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CjNTqDUVz+Y5/s3AH0Cfms7pORkhikfiKIPUk00jsdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
+ "{\"NotBeforeTimestamp\":\"\\/Date(1429191613652)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796413652)\\/\",\"ClientRequestId\":\"48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wRtKx/fr+2pLbXK+bzq4TXE3VGr/k35iSnDkD5JZf+0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
],
"x-ms-client-request-id": [
- "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P"
+ "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -563,7 +666,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 14a3e70b-c738-4f35-98b5-b918205a250d\r\n 4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
+ "ResponseBody": "\r\n 86bf359e-9b1e-44f8-b3c8-1909a5e9d370\r\n 48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -581,20 +684,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P"
+ "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P"
],
"x-ms-request-id": [
- "10fa70dd4b69c93ebd6f4aa768511e94"
+ "ce4e6cabeb2132928ac07cc4a06315e2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:05 GMT"
+ "Thu, 16 Apr 2015 14:40:14 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -607,8 +710,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/14a3e70b-c738-4f35-98b5-b918205a250d?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvMTRhM2U3MGItYzczOC00ZjM1LTk4YjUtYjkxODIwNWEyNTBkP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/86bf359e-9b1e-44f8-b3c8-1909a5e9d370?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvODZiZjM1OWUtOWIxZS00NGY4LWIzYzgtMTkwOWE1ZTlkMzcwP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -616,7 +719,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P"
+ "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -625,10 +728,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 14a3e70b-c738-4f35-98b5-b918205a250d\r\n 4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Map\r\n 2/23/2015 3:03:09 PM\r\n \r\n NetworkPairing\r\n 2/23/2015 3:03:06 PM\r\n Succeeded\r\n Completed\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n 1847303e-4ef4-4a43-9c77-5e5edb69bcb1\r\n Map network\r\n \r\n \r\n 2015-02-23T15:03:08.5347986Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:03:06.4119513Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 231483a2-a9e0-45c8-9ae9-8cf328853c61\r\n Attach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 86bf359e-9b1e-44f8-b3c8-1909a5e9d370\r\n 48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Map\r\n 2015-04-16T14:40:16Z\r\n \r\n NetworkPairing\r\n 2015-04-16T14:40:14.372067Z\r\n Succeeded\r\n Completed\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n Network\r\n \r\n \r\n 6e7490ab-fa7d-4969-9432-f80b7e5798a3\r\n Map network\r\n \r\n \r\n 2015-04-16T14:40:16.2238627Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:40:14.9567144Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 9a6f9de4-d927-4105-ac9e-42393be47ae4\r\n Attach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2511"
+ "2519"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -643,20 +746,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P"
+ "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P"
],
"x-ms-request-id": [
- "c49157b86ec5c242ad05513294bbfed8"
+ "4082b0c10f6b3923b45459e535a1f365"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:13 GMT"
+ "Thu, 16 Apr 2015 14:40:23 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -671,6 +774,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json
index 2c7b940b79f8..00619a463815 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "5950981ace69c748af318ac21ad99576"
+ "4598e16b288833298c924617e120898f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:51 GMT"
+ "Thu, 16 Apr 2015 14:41:59 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "32e2eb0a6261c5e8bf8f5e3d5e075a86"
+ "11752a86440e3a4a8b43e29c752efe48"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:52 GMT"
+ "Thu, 16 Apr 2015 14:42:01 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "b1c3994fb8ccc815bf210fe7a7e6a06e"
+ "1f8803afa84738ff9aab6e899dc1a593"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:57 GMT"
+ "Thu, 16 Apr 2015 14:42:04 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "3a70e36e9385c4a6b182204bb4ca100e"
+ "897cf97a664f3377978d9f3f66aa71f2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:01 GMT"
+ "Thu, 16 Apr 2015 14:42:06 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "2732a269a526c7f086fe311aec2a9157"
+ "4495d97508b0393f80559e57c717cc5a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:10 GMT"
+ "Thu, 16 Apr 2015 14:42:14 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,198 +221,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "07f14804b9bbcece9c3c034e6963a804"
+ "01c352f09d6f3209b95b62d574f3d1b3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:18 GMT"
+ "Thu, 16 Apr 2015 14:42:17 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "c2773b21088bcf20ac239a99652d233a"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:25 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "9ad88b5bd666c2fa873b98f2254d62ec"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:33 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "b1cf945e7caac481acd33ca0d0624072"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:42 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "2862144e5703c9059cac3c4455dcaf93"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:45 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -420,7 +256,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P"
+ "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -429,7 +265,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:03:02.4535127Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:03:27.8919357Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:59.1333621Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:59.9891537Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -447,20 +283,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P"
+ "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P"
],
"x-ms-request-id": [
- "857029ecfd32c588839592b685b5c581"
+ "b3815e8572ca3f70bacb091c311c5fcf"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:03:56 GMT"
+ "Thu, 16 Apr 2015 14:42:02 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -473,8 +309,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -482,7 +318,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P"
+ "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -491,7 +327,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n OK\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n \r\n",
+ "ResponseBody": "\r\n \r\n OK\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"636"
@@ -509,20 +345,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P"
+ "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P"
],
"x-ms-request-id": [
- "8f357d53481cc46195d9bfbd90478386"
+ "8797697ed9ef3a5c8fd98537c75703f7"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:00 GMT"
+ "Thu, 16 Apr 2015 14:42:04 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -535,8 +371,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,7 +380,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P"
+ "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -571,20 +407,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P"
+ "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P"
],
"x-ms-request-id": [
- "0f5adb15898fc59ea5d8906ef4f04e0f"
+ "f2db13c36aab37c5a3322bfb367ea0b5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:46 GMT"
+ "Thu, 16 Apr 2015 14:42:18 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -597,10 +433,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
"RequestMethod": "DELETE",
- "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n",
+ "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n",
"RequestHeaders": {
"Content-Type": [
"application/xml"
@@ -612,10 +448,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700242078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721842078)\\/\",\"ClientRequestId\":\"c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vDeoo71UotLIVLBkcBMaZsMbyQu3/I6AZqKSScVd3tA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
+ "{\"NotBeforeTimestamp\":\"\\/Date(1429191727271)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796527271)\\/\",\"ClientRequestId\":\"7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H57vE6CXRNxhDd4C0i+gj6TEhhH8rrkR2Z7sK1uTsdg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
],
"x-ms-client-request-id": [
- "c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P"
+ "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -624,7 +460,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
+ "ResponseBody": "\r\n f8467731-03eb-48ce-9f36-dd31f1a45b4e\r\n 7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -642,268 +478,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P"
- ],
- "x-ms-request-id": [
- "5e8f54834823cfbda24117693fd44e32"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:03 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "3306e0b0-952d-4618-8c1b-670fa164edeb-2015-02-23 15:04:10Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2504"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "3306e0b0-952d-4618-8c1b-670fa164edeb-2015-02-23 15:04:10Z-P"
- ],
- "x-ms-request-id": [
- "786a3a924e7acd6895d0e11fff13be9a"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:11 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "b361d0c9-a8d4-4ce2-acea-a7d84203a10d-2015-02-23 15:04:19Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2504"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "b361d0c9-a8d4-4ce2-acea-a7d84203a10d-2015-02-23 15:04:19Z-P"
- ],
- "x-ms-request-id": [
- "48585220decccd3c8131554bea73dab6"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:20 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "d269f243-de12-46a5-b086-a57b305ad135-2015-02-23 15:04:27Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2504"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "d269f243-de12-46a5-b086-a57b305ad135-2015-02-23 15:04:27Z-P"
- ],
- "x-ms-request-id": [
- "c55725e37c1bc0538f9c1f40088745e6"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:04:28 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "4d280da9-8d32-4444-9efd-f05af114921a-2015-02-23 15:04:35Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2504"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "4d280da9-8d32-4444-9efd-f05af114921a-2015-02-23 15:04:35Z-P"
+ "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P"
],
"x-ms-request-id": [
- "77ff8d3f862bc87eb7a37915f0eeb25a"
+ "642f7b2ad48a36de88299d6c4df9ed90"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:36 GMT"
+ "Thu, 16 Apr 2015 14:42:08 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -916,8 +504,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/f8467731-03eb-48ce-9f36-dd31f1a45b4e?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvZjg0Njc3MzEtMDNlYi00OGNlLTlmMzYtZGQzMWYxYTQ1YjRlP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -925,7 +513,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P"
+ "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -934,10 +522,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n 2/23/2015 3:04:40 PM\r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n Succeeded\r\n Completed\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 2015-02-23T15:04:38.8890688Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n f8467731-03eb-48ce-9f36-dd31f1a45b4e\r\n 7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n 2015-04-16T14:42:09Z\r\n \r\n NetworkUnPairing\r\n 2015-04-16T14:42:07.7585953Z\r\n Succeeded\r\n Completed\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n Network\r\n \r\n \r\n 2ae3db97-4ed0-4857-a3c2-9c4e773766d0\r\n Unmap network\r\n \r\n \r\n 2015-04-16T14:42:09.3977493Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:42:08.1651143Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 9ea57a36-4ce4-435f-97a1-06b18ad5e1e3\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2521"
+ "2531"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -952,20 +540,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P"
+ "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P"
],
"x-ms-request-id": [
- "84c31df35788c464a630613e1c63047f"
+ "e841507be57b3f81a1cbaea56c75d6dd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:04:44 GMT"
+ "Thu, 16 Apr 2015 14:42:15 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -980,6 +568,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json
index 0db889df9c70..1b0b632bc8da 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "7f5efd3075aace14afe78ac445d330be"
+ "31eac93eec34371d83eb544daf384f7f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:18 GMT"
+ "Thu, 16 Apr 2015 14:39:17 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "9f425bdb3b49c0d5aa76aa568df38642"
+ "0795caf12ed333f3a36526ad144eae63"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:20 GMT"
+ "Thu, 16 Apr 2015 14:39:19 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a33f193f4a62c531968880d5f4cb5cdd"
+ "d40286d483e53ff3adc57c65e6532fec"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:25 GMT"
+ "Thu, 16 Apr 2015 14:39:23 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "d463ac152407cb11be6f820948e296c6"
+ "4d740482122a3c75b322816632c1a296"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:28 GMT"
+ "Thu, 16 Apr 2015 14:39:25 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "7e683aab1ca2c853939fcb078687992c"
+ "1c27fd2007673bf3b447e802030ea6e0"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:31 GMT"
+ "Thu, 16 Apr 2015 14:39:28 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "02fbbba99899c3b2aaffe98f210e6793"
+ "f01957f128e738918236d249dfd53b94"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:39 GMT"
+ "Thu, 16 Apr 2015 14:39:29 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,34 +262,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "8383bcae912ac5688d533d51ab46933e"
+ "3e183557b61f3b43bc238acdbe53e2c9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:47 GMT"
+ "Thu, 16 Apr 2015 14:39:38 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -303,157 +303,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "10157021b0c5cb3795a055d0d17f22b4"
+ "5d491d1acae13e498ebd03ad875587b4"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:56 GMT"
+ "Thu, 16 Apr 2015 14:39:41 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "e7dd2430f041c3f8b07c46cb6cce34bd"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:01:03 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "7b2ff9fb40bec7d79f727f7b29ce545d"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:01:11 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "1868"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "x-ms-request-id": [
- "1404ecfa2df2cb55887497f1f7071591"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:01:15 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -461,7 +338,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P"
+ "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -470,7 +347,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:00:02.3888329Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:58.4089848Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:18.9313309Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:19.7621001Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -488,20 +365,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P"
+ "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P"
],
"x-ms-request-id": [
- "0ed3a2b059f6cf95887c2e02edba03e0"
+ "1064a655f7953739bffeb3e4bac9c60d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:23 GMT"
+ "Thu, 16 Apr 2015 14:39:21 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -514,8 +391,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Storages?api-version=2015-02-10&ServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTAmU2VydmVySWQ9Nzc0ODU5YjAtMTk2Ni00OGNjLTlkZjctNzU5YzQ0MWI3YThj",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Storages?api-version=2015-04-10&ServerId=4c83e038-7abd-428b-9138-81065e2bb559",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9NGM4M2UwMzgtN2FiZC00MjhiLTkxMzgtODEwNjVlMmJiNTU5",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -523,7 +400,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P"
+ "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -532,10 +409,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n Classification\r\n \r\n \r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n Classification\r\n \r\n",
+ "ResponseBody": "\r\n \r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n Classification\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "720"
+ "456"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -550,20 +427,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P"
+ "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P"
],
"x-ms-request-id": [
- "390a4c26f0d5cd4cbff22ded93140041"
+ "95479ae413073909ac5557ba58b66990"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:27 GMT"
+ "Thu, 16 Apr 2015 14:39:25 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -576,8 +453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Storages?api-version=2015-04-10&ServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9OGVjNjRlNzktZmI5Ny00ODM3LWE2YjEtMTk2OGYzZmNjNjNm",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -585,7 +462,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P"
+ "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -594,10 +471,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "\r\n \r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n Classification\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "126"
+ "455"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -612,20 +489,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P"
+ "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P"
],
"x-ms-request-id": [
- "1950e74131f8c35f9cdeb2468c4d874e"
+ "92428ab532d53379b2f043f99fb755e3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:29 GMT"
+ "Thu, 16 Apr 2015 14:39:26 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -638,8 +515,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -647,7 +524,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P"
+ "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -656,81 +533,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "627"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P"
- ],
- "x-ms-request-id": [
- "a63ac1053847c5b8a1862952f0652c92"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:01:17 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw",
- "RequestMethod": "POST",
- "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n",
- "RequestHeaders": {
- "Content-Type": [
- "application/xml"
- ],
- "Content-Length": [
- "403"
- ],
- "Accept": [
- "application/xml"
- ],
- "Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700031280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721631280)\\/\",\"ClientRequestId\":\"5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ECadxxV9pheVDByCX61AhdS0HSsGuRjcCUiT2oup/o0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
- ],
- "x-ms-client-request-id": [
- "5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "629"
+ "126"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -745,20 +551,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P"
+ "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P"
],
"x-ms-request-id": [
- "595130f7582cc14b8faf9fa2f72859b5"
+ "6284c28a8be931fb9c4c6f00895f2385"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:33 GMT"
+ "Thu, 16 Apr 2015 14:39:29 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -771,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -780,7 +586,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P"
+ "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -789,10 +595,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2864"
+ "627"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -807,20 +613,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P"
+ "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P"
],
"x-ms-request-id": [
- "7a381aa43188c91c91f25b5a8782824c"
+ "a3ea0080dda836e3ad952d726ac82462"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:00:40 GMT"
+ "Thu, 16 Apr 2015 14:39:42 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -833,140 +639,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n",
"RequestHeaders": {
- "Accept": [
- "application/xml"
- ],
- "x-ms-client-request-id": [
- "bfdf095b-8227-4f07-b3b4-cba9646e12c4-2015-02-23 15:00:48Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
- "Content-Length": [
- "2864"
- ],
"Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "bfdf095b-8227-4f07-b3b4-cba9646e12c4-2015-02-23 15:00:48Z-P"
- ],
- "x-ms-request-id": [
- "90402d39b1fec5929238ff8c0f78516a"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:00:49 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "Accept": [
"application/xml"
],
- "x-ms-client-request-id": [
- "34541976-748f-4a2a-840a-dade904df9ef-2015-02-23 15:00:56Z-P"
- ],
- "x-ms-version": [
- "2013-03-01"
- ],
- "User-Agent": [
- "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n",
- "ResponseHeaders": {
"Content-Length": [
- "2864"
- ],
- "Content-Type": [
- "application/xml; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
- ],
- "x-ms-client-request-id": [
- "34541976-748f-4a2a-840a-dade904df9ef-2015-02-23 15:00:56Z-P"
- ],
- "x-ms-request-id": [
- "356b8f98f834ca3282ac906084f06bcf"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 23 Feb 2015 15:00:57 GMT"
- ],
- "Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
- "Microsoft-HTTPAPI/2.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "403"
],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"Accept": [
"application/xml"
],
+ "Agent-Authentication": [
+ "{\"NotBeforeTimestamp\":\"\\/Date(1429191570819)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796370819)\\/\",\"ClientRequestId\":\"8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IuaLMltLUBA6c7/MhnbGFmLEGLmz9a8yNY9PBMfVeTw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
+ ],
"x-ms-client-request-id": [
- "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P"
+ "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -975,10 +666,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 82ecbee4-d887-47c0-bda1-d594cdbca102\r\n 8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2015-04-16T14:39:31.749611Z\r\n InProgress\r\n InProgress\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.0746738Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2864"
+ "2878"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -993,20 +684,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P"
+ "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P"
],
"x-ms-request-id": [
- "b4580805468acb36bab1afe5ea28580b"
+ "5f38d511f8ba3c20a185343fd7344c0a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:04 GMT"
+ "Thu, 16 Apr 2015 14:39:32 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1019,8 +710,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/82ecbee4-d887-47c0-bda1-d594cdbca102?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvODJlY2JlZTQtZDg4Ny00N2MwLWJkYTEtZDU5NGNkYmNhMTAyP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1028,7 +719,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P"
+ "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1037,10 +728,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n 2/23/2015 3:01:08 PM\r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n Succeeded\r\n Completed\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 2015-02-23T15:01:08.6821198Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:01:08.4321314Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 2015-02-23T15:01:08.7446203Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:01:08.6821198Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 82ecbee4-d887-47c0-bda1-d594cdbca102\r\n 8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n 2015-04-16T14:39:32Z\r\n \r\n ClassificationPairing\r\n 2015-04-16T14:39:31.749611Z\r\n Succeeded\r\n Completed\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 2015-04-16T14:39:32.2062333Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.0746738Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 2015-04-16T14:39:32.2843175Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.2062333Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2910"
+ "2917"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1055,20 +746,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P"
+ "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P"
],
"x-ms-request-id": [
- "f4f73c140963c6a49c1a69e571359f19"
+ "0335b0e3c0e434989234c8fd01da1094"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:13 GMT"
+ "Thu, 16 Apr 2015 14:39:39 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1083,6 +774,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json
index 5eb7d1512b48..de0c11cee91c 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "0d6a5f449ea4c702a944d4135076873b"
+ "df5a45f3520b37319907cd2b3271732e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:53 GMT"
+ "Thu, 16 Apr 2015 14:41:19 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a922f6a331c8cb87906e44790c30ba0f"
+ "c99607ce844032dea00c3e3fec14a5e6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:55 GMT"
+ "Thu, 16 Apr 2015 14:41:20 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "dedcece47528c79589fdbc829de8774b"
+ "301986597bfd383b8811aed28a70769b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:59 GMT"
+ "Thu, 16 Apr 2015 14:41:23 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "6ee6c318f374c2628b4bea0f8e40e765"
+ "485b73ffd32733e8a6f1c500bd55bee3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:03 GMT"
+ "Thu, 16 Apr 2015 14:41:26 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a7a613d2a540c8a88a4640340255b96b"
+ "f6b2f69a4878386d946949978025e63e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:10 GMT"
+ "Thu, 16 Apr 2015 14:41:34 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "1868"
+ "1115"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "6f5f4fa7fd6ec099a7addea9e910bd5f"
+ "18c82a131d0b37cb80afc87af5e2e78d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:13 GMT"
+ "Thu, 16 Apr 2015 14:41:37 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -256,7 +256,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-P"
+ "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -265,7 +265,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:32.4456534Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:57.8805747Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:19.0943246Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:19.9458194Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -283,20 +283,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-P"
+ "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P"
],
"x-ms-request-id": [
- "5c9028081490c164b548d0715fb07d8c"
+ "addc81afc12833fdbba517b63ec208bd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:01:58 GMT"
+ "Thu, 16 Apr 2015 14:41:23 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -309,8 +309,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -318,7 +318,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-P"
+ "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -327,7 +327,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n \r\n",
+ "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"627"
@@ -345,20 +345,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-P"
+ "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P"
],
"x-ms-request-id": [
- "972f709d1d1ac022b7399eccde151a57"
+ "3e6f62698b5d323fa352e075a08445c9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:01 GMT"
+ "Thu, 16 Apr 2015 14:41:25 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -371,8 +371,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -380,7 +380,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P"
+ "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -407,20 +407,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P"
+ "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P"
],
"x-ms-request-id": [
- "4cd59cd92e95cbe689c72c329461a3fc"
+ "f8a7f3dab4f53d418aac1a6b6e594439"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:15 GMT"
+ "Thu, 16 Apr 2015 14:41:38 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -433,10 +433,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
"RequestMethod": "DELETE",
- "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n",
+ "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n",
"RequestHeaders": {
"Content-Type": [
"application/xml"
@@ -448,10 +448,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"NotBeforeTimestamp\":\"\\/Date(1424700123929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721723929)\\/\",\"ClientRequestId\":\"df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ip2a65KSYWL84ygC8oaDFwaFfuS+0iqqrKHuokeN+GA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
+ "{\"NotBeforeTimestamp\":\"\\/Date(1429191687041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796487041)\\/\",\"ClientRequestId\":\"f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BrcutAMshA+DV9m7NS8cAuljLSzyhJj6TtwL7sDvcYU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}"
],
"x-ms-client-request-id": [
- "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P"
+ "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -460,7 +460,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 31ccbff0-3303-49bd-8106-3b3bc7f6407b\r\n df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
+ "ResponseBody": "\r\n 9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0\r\n f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -478,20 +478,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P"
+ "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P"
],
"x-ms-request-id": [
- "c845d706802bc79a9749136086349c70"
+ "24fc7fbbdc163288819b25eb6b33b34d"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:04 GMT"
+ "Thu, 16 Apr 2015 14:41:28 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -504,8 +504,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/31ccbff0-3303-49bd-8106-3b3bc7f6407b?api-version=2015-02-10",
- "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvMzFjY2JmZjAtMzMwMy00OWJkLTgxMDYtM2IzYmM3ZjY0MDdiP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
+ "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0?api-version=2015-04-10",
+ "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvOWNkZjBjNGItNGVkOC00MGE2LWJlOTktNjJjOGNlNDdiMGUwP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -513,7 +513,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P"
+ "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -522,10 +522,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "\r\n 31ccbff0-3303-49bd-8106-3b3bc7f6407b\r\n df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove classification mapping\r\n 2/23/2015 3:02:06 PM\r\n \r\n ClassificationUnpairing\r\n 2/23/2015 3:02:05 PM\r\n Succeeded\r\n Completed\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n UnpairClassificationsPreflightChecksTask\r\n Prerequisites check for unmapping classifications\r\n \r\n \r\n 2015-02-23T15:02:06.3074297Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:02:06.1340112Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n UnpairClassificationsTask\r\n Unmapping classifications\r\n \r\n \r\n 2015-02-23T15:02:06.3553235Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:02:06.3074297Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n",
+ "ResponseBody": "\r\n 9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0\r\n f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove classification mapping\r\n 2015-04-16T14:41:28Z\r\n \r\n ClassificationUnpairing\r\n 2015-04-16T14:41:27.5949145Z\r\n Succeeded\r\n Completed\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n UnpairClassificationsPreflightChecksTask\r\n Prerequisites check for unmapping classifications\r\n \r\n \r\n 2015-04-16T14:41:28.4871829Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:41:28.1905094Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n UnpairClassificationsTask\r\n Unmapping classifications\r\n \r\n \r\n 2015-04-16T14:41:28.5809349Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:41:28.4871829Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n",
"ResponseHeaders": {
"Content-Length": [
- "2927"
+ "2935"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -540,20 +540,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P"
+ "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P"
],
"x-ms-request-id": [
- "f458ca104bf3ccb4b7aec3184554038a"
+ "eb2d135865cf3aa5be0d3d026850b954"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Mon, 23 Feb 2015 15:02:12 GMT"
+ "Thu, 16 Apr 2015 14:41:36 GMT"
],
"Server": [
- "1.0.6196.1444",
- "(rd_rdfe.150212-0800)",
+ "1.0.6198.202",
+ "(rd_rdfe_stable.150307-1902)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -568,6 +568,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
+ "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config
index 42803e8fbfae..51497f10b516 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config
@@ -4,7 +4,7 @@
-
+
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj
index 891cf8f8d254..fdb70a83f94e 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj
@@ -89,7 +89,7 @@
False
- ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
+ ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll
@@ -149,6 +149,7 @@
+
@@ -163,9 +164,15 @@
+
+
+
+
+
+
@@ -225,6 +232,9 @@
+
+ PreserveNewest
+
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml
index ccf0d7feb21f..964795ae9b6f 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml
@@ -900,334 +900,73 @@
-
-
-
- Get-AzureSiteRecoveryJob
-
-
- The Get-AzureSiteRecoveryJob cmdlet gets Microsoft Azure Site Recovery jobs. You can use this cmdlet to view the information of the operation for current Azure Site Recovery vault.
-
-
-
-
- Get
- AzureSiteRecoveryJob
-
-
-
- Get the information of the operation for current Azure Site Recovery Vault.
-
-
-
-
- Get-AzureSiteRecoveryJob
-
- Id
-
- Specifies the ID of a job to get.
-
- string
-
-
-
- Get-AzureSiteRecoveryJob
-
- Job
-
- Specifies an Azure Site Recovery job object to get.
-
- ASRJob
-
-
-
- Get-AzureSiteRecoveryJob
-
- EndTime
-
- Specifies a end time as a DateTime object. This cmdlet gets jobs that ends after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
-
- DateTime
-
-
- StartTime
-
- Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
-
- DateTime
-
-
- State
-
- Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies.
-
- string
-
-
- TargetObjectId
-
- ID of the object on which Job was targeted to.
-
- string
-
-
-
-
-
-
- EndTime
-
- Specifies a end time as a DateTime object. This cmdlet gets jobs that ends after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
-
-
- DateTime
-
- DateTime
-
-
-
-
-
- Id
-
- Specifies the ID of a job to get.
-
-
- string
-
- string
-
-
-
-
-
- Job
-
- Specifies an Azure Site Recovery job object to get.
-
-
- ASRJob
-
- ASRJob
-
-
-
-
-
- StartTime
-
- Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
-
-
- DateTime
-
- DateTime
-
-
-
-
-
- State
-
- Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies.
-
-
- string
-
- string
-
-
-
-
-
- TargetObjectId
-
- ID of the object on which Job was targeted to.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
-Get-AzureSiteRecoveryJob -Id d0b56c01-1fd7-411a-94e9-be717ac6601e
-
-ID : d0b56c01-1fd7-411a-94e9-be717ac6601e
-ClientRequestId : 0d259706-7882-4614-81bf-7d155f3600cb-2014-10-06 09:40:26Z
-State : Succeeded
-StateDescription : Completed
-StartTime : 10/6/2014 9:40:28 AM
-EndTime : 10/6/2014 9:40:30 AM
-AllowedActions : {Cancel, Restart}
-Name : Remove classification configuration
-Tasks : {Prerequisites check for unpairing classifications, Unpairing classifications}
-Errors : {}
-
- Description
- -----------
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
-$StartTime = Get-Date "2015-02-20 06:10:03Z"
-$EndTime = Get-Date "2015-02-20 06:20:03Z"
-Get-AzureSiteRecoveryJob -StartTime $StartTime -EndTime $EndTime
-
-Name : SaveRecoveryPlan
-ID : 5d6389f7-3f08-48d6-9d2c-e4a4aed36a0b
-ClientRequestId : bc4b291d-4722-419e-a7a3-7a58674c35a3-2015-02-20 06:14:03Z
-State : Succeeded
-StateDescription : Completed
-StartTime : 2/20/2015 6:14:04 AM
-EndTime : 2/20/2015 6:14:05 AM
-TargetObjectId : 2d11e8be-29b8-4152-a8b9-2a6a9304537a
-TargetObjectType : RecoveryPlan
-TargetObjectName : TestRP
-AllowedActions :
-Tasks : {Save a recovery plan task}
-Errors : {}
-
- Description
- -----------
- Provide the DateTime object in UTC as input to StartTime and EndTime parameter.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryJob
- Get information of the Recovery Plan for current Azure Site Recovery Vault
+ The Get-AzureSiteRecoveryJob cmdlet gets Microsoft Azure Site Recovery jobs. You can use this cmdlet to view the information of the operation for current Azure Site Recovery vault.
Get
- AzureSiteRecoveryRecoveryPlan
+ AzureSiteRecoveryJob
- Get information of the Recovery Plan for current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery
+ Get the information of the operation for current Azure Site Recovery Vault.
- Get-AzureSiteRecoveryRecoveryPlan
-
-
- Get-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryJob
- Name
+ Id
- name of the recovery plan
+ Specifies the ID of a job to get.
string
- Get-AzureSiteRecoveryRecoveryPlan
-
- Id
+ Get-AzureSiteRecoveryJob
+
+ Job
- Id of the recovery plan
+ Specifies an Azure Site Recovery job object to get.
+
+ ASRJob
+
+
+
+ Get-AzureSiteRecoveryJob
+
+ EndTime
+
+ Specifies a end time as a DateTime object. This cmdlet gets jobs that starts before the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
+
+ DateTime
+
+
+ StartTime
+
+ Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
+
+ DateTime
+
+
+ State
+
+ Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies.
+
+ string
+
+
+ TargetObjectId
+
+ ID of the object on which Job was targeted to.
string
@@ -1235,10 +974,23 @@ Errors : {}
+
+ EndTime
+
+ Specifies a end time as a DateTime object. This cmdlet gets jobs that starts before the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
+
+
+ DateTime
+
+ DateTime
+
+
+
+
Id
- Id of the recovery plan
+ Specifies the ID of a job to get.
string
@@ -1248,10 +1000,49 @@ Errors : {}
-
- Name
+
+ Job
- name of the recovery plan
+ Specifies an Azure Site Recovery job object to get.
+
+
+ ASRJob
+
+ ASRJob
+
+
+
+
+
+ StartTime
+
+ Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date.
+
+
+ DateTime
+
+ DateTime
+
+
+
+
+
+ State
+
+ Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies.
+
+
+ string
+
+ string
+
+
+
+
+
+ TargetObjectId
+
+ ID of the object on which Job was targeted to.
string
@@ -1319,11 +1110,61 @@ Errors : {}
C:\PS>
- Get-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryJob -Id d0b56c01-1fd7-411a-94e9-be717ac6601e
- ID Name ServerId TargetServerId
- -- ---- -------- --------------
- 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc...
+ Name : DeleteRecoveryPlan
+ ID : 1bb9fcbe-3bd6-4b3f-b77c-e4fb193f545a
+ ClientRequestId : 9a867466-f10e-4d62-9cca-a15fa7116035-2015-03-02 16:27:31Z
+ State : Succeeded
+ StateDescription : Completed
+ StartTime : 02-03-2015 16:27:33 +05:30
+ EndTime : 02-03-2015 16:27:33 +05:30
+ TargetObjectId : cfb445b7-fd14-4b5d-b9ac-5154e1415ef2
+ TargetObjectType : RecoveryPlan
+ TargetObjectName : RPE2E
+ AllowedActions : {Cancel}
+ Tasks : {Delete a recovery plan task}
+ Errors : {}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 2 --------------------------
+
+
+ C:\PS>
+
+
+ Get-AzureSiteRecoveryJob -StartTime "02-03-2015 21:50:00" -EndTime "02-03-2015 22:00:00"
+
+ Name : DeleteRecoveryPlan
+ ID : 1bb9fcbe-3bd6-4b3f-b77c-e4fb193f545a
+ ClientRequestId : 9a867466-f10e-4d62-9cca-a15fa7116035-2015-03-02 16:27:31Z
+ State : Succeeded
+ StateDescription : Completed
+ StartTime : 02-03-2015 16:27:33 +05:30
+ EndTime : 02-03-2015 16:27:33 +05:30
+ TargetObjectId : cfb445b7-fd14-4b5d-b9ac-5154e1415ef2
+ TargetObjectType : RecoveryPlan
+ TargetObjectName : RPE2E
+ AllowedActions : {Cancel}
+ Tasks : {Delete a recovery plan task}
+ Errors : {}
Description
@@ -1350,298 +1191,46 @@ Errors : {}
-
-
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
-
- The Get-AzureSiteRecoveryProtectionEntity cmdlet gets protected objects in Microsoft Azure Site Recovery, such as virtual machines.
-
-
-
-
- Get
- AzureSiteRecoveryProtectionEntity
-
-
-
- Get the list of Protection Entities like "VMs" . A Protection Entity is an object which can be protected using Azure site Recovery
-
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- ProtectionContainerId
-
- Id of the Protection Container
-
- string
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- Id
-
- Specifies the ID of a protection entity to get.
-
- string
-
-
- ProtectionContainerId
-
- Id of the Protection Container
-
- string
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- Name
-
- Name of the Protection Entity
-
- string
-
-
- ProtectionContainerId
-
- Id of the Protection Container
-
- string
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- ProtectionContainer
-
- Protection Container object
-
- ASRProtectionContainer
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- Id
-
- Specifies the ID of a protection entity to get.
-
- string
-
-
- ProtectionContainer
-
- Protection Container object
-
- ASRProtectionContainer
-
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- Name
-
- Name of the Protection Entity
-
- string
-
-
- ProtectionContainer
-
- Protection Container object
-
- ASRProtectionContainer
-
-
-
-
-
-
- Id
-
- Specifies the ID of a protection entity to get.
-
-
- string
-
- string
-
-
-
-
-
- Name
-
- Name of the Protection Entity
-
-
- string
-
- string
-
-
-
-
-
- ProtectionContainer
-
- Protection Container object
-
-
- ASRProtectionContainer
-
- ASRProtectionContainer
-
-
-
-
-
- ProtectionContainerId
-
- Id of the Protection Container
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
-$PC = Get-AzureSiteRecoveryProtectionContainer; Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC
-
-ID : 43aaab46-1cb0-4c39-8077-9a091c3b05ce
-ServerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c
-ProtectionContainerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c_1c513d45-645d-4ed0-b9ae-e7b869a1f7fc
-Name : testvm
-Type : VirtualMachine
-FabricObjectId : 506B3CAC-5758-49E2-98C4-E5B0512E4D8E
-Protected : False
-CanCommit : False
-CanFailover : False
-CanReverseReplicate : False
-ActiveLocation : Primary
-ProtectionStateDescription : Enabling protection
-ReplicationHealth :
-TestFailoverStateDescription : None
-ReplicationProvider : HyperVReplica
-
- Description
- -----------
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- Import-AzureSiteRecoveryVaultSettingsFile
+ Get-AzureSiteRecoveryRecoveryPlan
- Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault
+ Get information of the Recovery Plan for current Azure Site Recovery Vault
- Import
- AzureSiteRecoveryVaultSettingsFile
+ Get
+ AzureSiteRecoveryRecoveryPlan
- Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault. The Vault settings file can be downloaded from Azure site recovery Vault by logging on the Azure portal
+ Get information of the Recovery Plan for current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery
- Import-AzureSiteRecoveryVaultSettingsFile
-
- Path
+ Get-AzureSiteRecoveryRecoveryPlan
+
+
+ Get-AzureSiteRecoveryRecoveryPlan
+
+ Name
- Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
+ name of the recovery plan
+
+ string
+
+
+
+ Get-AzureSiteRecoveryRecoveryPlan
+
+ Id
+
+ Id of the recovery plan
string
@@ -1649,10 +1238,23 @@ ReplicationProvider : HyperVReplica
-
- Path
+
+ Id
- Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
+ Id of the recovery plan
+
+
+ string
+
+ string
+
+
+
+
+
+ Name
+
+ name of the recovery plan
string
@@ -1720,13 +1322,11 @@ ReplicationProvider : HyperVReplica
C:\PS>
- Import-AzureSiteRecoveryVaultSettingsFile -Path "C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials"
-
- VERBOSE: Vault Settings File path: C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials
+ Get-AzureSiteRecoveryRecoveryPlan
- ResourceName CloudServiceName
- ------------ ----------------
- Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP...
+ ID Name ServerId TargetServerId
+ -- ---- -------- --------------
+ 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc...
Description
@@ -1753,253 +1353,135 @@ ReplicationProvider : HyperVReplica
-
+
- New-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryProtectionEntity
- Adds a Recovery Plan in to a current Azure Site Recovery Vault
+ The Get-AzureSiteRecoveryProtectionEntity cmdlet gets protected objects in Microsoft Azure Site Recovery, such as virtual machines.
- New
- AzureSiteRecoveryRecoveryPlan
+ Get
+ AzureSiteRecoveryProtectionEntity
- Adds a Recovery Plan in to a current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery. Use Get-AzureSiteRecoveryRecoveryPlanFile commandlet on an existing Recovery Plan to view the RecoveryPlan file and know its format.
+ Get the list of Protection Entities like "VMs" . A Protection Entity is an object which can be protected using Azure site Recovery
- New-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryProtectionEntity
- File
+ ProtectionContainerId
- Recovery Plan file
+ Id of the Protection Container
string
-
- WaitForCompletion
+
+
+ Get-AzureSiteRecoveryProtectionEntity
+
+ Id
- Waits till the operation completes
+ Specifies the ID of a protection entity to get.
+
+ string
+
+
+ ProtectionContainerId
+
+ Id of the Protection Container
+ string
-
-
-
-
- File
-
- Recovery Plan file
-
-
- string
-
- string
-
-
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- New-AzureSiteRecoveryRecoveryPlan -File C:\Users\contoso\Desktop\RP.xml
-
- ID : 189283c7-7fd9-4010-8bf1-d2a2e4a46df4
- ClientRequestId : 6c56d96e-dfdd-4898-81cf-8562f51a8129-2014-34-06 15:34:23Z-P
- State : NotStarted
- StateDescription : NotStarted
- StartTime :
- EndTime :
- AllowedActions : {}
- Name :
- Tasks : {}
- Errors : {}
-
-
- Description
- -----------
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureSiteRecoveryRecoveryPlan
-
-
- Remove a Recovery Plan from the current Azure Site Recovery Vault
-
-
-
-
- Remove
- AzureSiteRecoveryRecoveryPlan
-
-
-
- Remove a Recovery Plan from the current Azure Site Recovery Vault
-
-
-
- Remove-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryProtectionEntity
- Id
+ Name
- Id of the Recovery Plan
+ Name of the Protection Entity
string
-
- Force
+
+ ProtectionContainerId
- Bypasses confirmation on passing
+ Id of the Protection Container
+ string
-
- WaitForCompletion
+
+
+ Get-AzureSiteRecoveryProtectionEntity
+
+ ProtectionContainer
- Waits till the operation completes
+ Protection Container object
+ ASRProtectionContainer
- Remove-AzureSiteRecoveryRecoveryPlan
+ Get-AzureSiteRecoveryProtectionEntity
+
+ Id
+
+ Specifies the ID of a protection entity to get.
+
+ string
+
- RecoveryPlan
+ ProtectionContainer
- Recovery Plan object
+ Protection Container object
- ASRRecoveryPlan
+ ASRProtectionContainer
-
- Force
+
+
+ Get-AzureSiteRecoveryProtectionEntity
+
+ Name
- Bypasses confirmation on passing
+ Name of the Protection Entity
+ string
-
- WaitForCompletion
+
+ ProtectionContainer
- Waits till the operation completes
+ Protection Container object
+ ASRProtectionContainer
-
- Force
+
+ Id
- Bypasses confirmation on passing
+ Specifies the ID of a protection entity to get.
- SwitchParameter
+ string
- SwitchParameter
+ string
- Id
+ Name
- Id of the Recovery Plan
+ Name of the Protection Entity
string
@@ -2010,27 +1492,27 @@ ReplicationProvider : HyperVReplica
- RecoveryPlan
+ ProtectionContainer
- Recovery Plan object
+ Protection Container object
- ASRRecoveryPlan
+ ASRProtectionContainer
- ASRRecoveryPlan
+ ASRProtectionContainer
-
- WaitForCompletion
+
+ ProtectionContainerId
- Waits till the operation completes
+ Id of the Protection Container
- SwitchParameter
+ string
- SwitchParameter
+ string
@@ -2093,18 +1575,23 @@ ReplicationProvider : HyperVReplica
C:\PS>
- $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp
-
- ID : 20329f92-9ed6-4529-8b74-d83309623248
- ClientRequestId : 6c967844-096f-4ca6-a166-55936fd6d61c-2014-36-06 15:36:40Z-P
- State : NotStarted
- StateDescription : NotStarted
- StartTime :
- EndTime :
- AllowedActions : {}
- Name :
- Tasks : {}
- Errors : {}
+ $PC = Get-AzureSiteRecoveryProtectionContainer; Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC
+
+ ID : 43aaab46-1cb0-4c39-8077-9a091c3b05ce
+ ServerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c
+ ProtectionContainerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c_1c513d45-645d-4ed0-b9ae-e7b869a1f7fc
+ Name : testvm
+ Type : VirtualMachine
+ FabricObjectId : 506B3CAC-5758-49E2-98C4-E5B0512E4D8E
+ Protected : False
+ CanCommit : False
+ CanFailover : False
+ CanReverseReplicate : False
+ ActiveLocation : Primary
+ ProtectionStateDescription : Enabling protection
+ ReplicationHealth :
+ TestFailoverStateDescription : None
+ ReplicationProvider : HyperVReplica
Description
@@ -2131,54 +1618,44 @@ ReplicationProvider : HyperVReplica
-
+
- Restart-AzureSiteRecoveryJob
+ Import-AzureSiteRecoveryVaultSettingsFile
- Restarts the Operation in Azure Site Recovery
+ Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault
- Restart
- AzureSiteRecoveryJob
+ Import
+ AzureSiteRecoveryVaultSettingsFile
- Restarts the Operation in Azure Site Recovery . This cmdlet is allowed on failed and cancelled jobs . To know allowed actions on a job look for Allowed Actions in job object
+ Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault. The Vault settings file can be downloaded from Azure site recovery Vault by logging on the Azure portal
- Restart-AzureSiteRecoveryJob
-
- Id
+ Import-AzureSiteRecoveryVaultSettingsFile
+
+ Path
- Id of the Azure Site Recovery Job
+ Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
string
-
- Restart-AzureSiteRecoveryJob
-
- Job
-
-
-
- ASRJob
-
-
-
- Id
+
+ Path
- Id of the Azure Site Recovery Job
+ Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
string
@@ -2188,19 +1665,6 @@ ReplicationProvider : HyperVReplica
-
- Job
-
-
-
-
- ASRJob
-
- ASRJob
-
-
-
-
@@ -2259,19 +1723,13 @@ ReplicationProvider : HyperVReplica
C:\PS>
- Restart-AzureSiteRecoveryJob -Id bbf0b839-9aaa-49e1-8354-601c9145966d
+ Import-AzureSiteRecoveryVaultSettingsFile -Path "C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials"
- ID : bbf0b839-9aaa-49e1-8354-601c9145966d
- ClientRequestId : ef42c8b0-640c-4442-960b-349f83d161a5-2014-24-06 14:24:04Z-P
- State : Failed
- StateDescription : Failed
- StartTime : 10/6/2014 9:41:08 AM
- EndTime : 10/6/2014 9:41:21 AM
- AllowedActions : {Cancel, Restart}
- Name : Enable protection
- Tasks : {Prerequisites check for enabling protection , Identifying replication target, Enable replication,
- Starting initial replication...}
- Errors : {CreateProtectionTargetTask}
+ VERBOSE: Vault Settings File path: C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials
+
+ ResourceName CloudServiceName
+ ------------ ----------------
+ Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP...
Description
@@ -2298,81 +1756,50 @@ ReplicationProvider : HyperVReplica
-
+
- Resume-AzureSiteRecoveryJob
+ New-AzureSiteRecoveryRecoveryPlan
- Resumes a suspended job in Azure Site Recovery
+ Adds a Recovery Plan in to a current Azure Site Recovery Vault
- Resume
- AzureSiteRecoveryJob
+ New
+ AzureSiteRecoveryRecoveryPlan
- Resumes the Operation in Azure Site Recovery . This cmdlet is allowed on suspended jobs . To know allowed actions on a job look for Allowed Actions in job object
+ Adds a Recovery Plan in to a current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery. Use Get-AzureSiteRecoveryRecoveryPlanFile commandlet on an existing Recovery Plan to view the RecoveryPlan file and know its format.
- Resume-AzureSiteRecoveryJob
+ New-AzureSiteRecoveryRecoveryPlan
- Id
-
- ID of the Azure Site Recovery Job
-
- string
-
-
- Comments
+ File
- User comment can be specified while resuming the Job
+ Recovery Plan file
string
-
-
- Resume-AzureSiteRecoveryJob
-
- Job
-
- ASR Job object
-
- ASRJob
-
- Comments
+ WaitForCompletion
- User comment can be specified while resuming the Job
+ Waits till the operation completes
- string
-
- Comments
-
- User comment can be specified while resuming the Job
-
-
- string
-
- string
-
-
-
-
- Id
+ File
- ID of the Azure Site Recovery Job
+ Recovery Plan file
string
@@ -2382,15 +1809,15 @@ ReplicationProvider : HyperVReplica
-
- Job
+
+ WaitForCompletion
- ASR Job object
+ Waits till the operation completes
- ASRJob
+ SwitchParameter
- ASRJob
+ SwitchParameter
@@ -2453,18 +1880,17 @@ ReplicationProvider : HyperVReplica
C:\PS>
- $jobs= Get-AzureSiteRecoveryJob; Resume-AzureSiteRecoveryJob -Job $jobs
+ New-AzureSiteRecoveryRecoveryPlan -File C:\Users\contoso\Desktop\RP.xml
- ID : d16397fb-cdf1-4972-b677-c333f3c557b4
- ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P
- State : Suspended
- StateDescription : WaitingForManualAction
- StartTime : 10/6/2014 10:19:28 AM
- EndTime : 10/6/2014 10:19:31 AM
- AllowedActions : {Cancel, RestartTestFailoverCleanup}
- Name : Test failover
- Tasks : {Recovery plan preflight checks, Create test environment, All groups failover: Pre steps (1),
- Recovery plan failover...}
+ ID : 189283c7-7fd9-4010-8bf1-d2a2e4a46df4
+ ClientRequestId : 6c56d96e-dfdd-4898-81cf-8562f51a8129-2014-34-06 15:34:23Z-P
+ State : NotStarted
+ StateDescription : NotStarted
+ StartTime :
+ EndTime :
+ AllowedActions : {}
+ Name :
+ Tasks : {}
Errors : {}
@@ -2492,430 +1918,41 @@ ReplicationProvider : HyperVReplica
-
-
-
-
-
- Set-AzureSiteRecoveryProtectionEntity
-
-
- Sets the Protection on a protection entity for Azure Site Recovery
-
-
-
-
- Set
- AzureSiteRecoveryProtectionEntity
-
-
-
- Sets the Protection on a protection entity for Azure Site Recovery. This is async cmdlet which will only start the operation and return the job object.
-
-
-
-
- Set-AzureSiteRecoveryProtectionEntity
-
- Id
-
- ID of the protection entity
-
- string
-
-
- ProtectedContainerId
-
- ID of the Protected Container
-
- string
-
-
- Protection
-
- set 'Enable' to enable protection and 'Disable' to disable protection
-
- string
-
-
- Force
-
- Bypasses confirmation on passing
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Set-AzureSiteRecoveryProtectionEntity
-
- Protection
-
- set 'Enable' to enable protection and 'Disable' to disable protection
-
- string
-
-
- ProtectionEntity
-
- Protection Entity object
-
- ASRProtectionEntity
-
-
- Force
-
- Bypasses confirmation on passing
-
-
-
- OS
-
- OS type e.g. Windows or Linux
-
- string
-
-
- OSDiskName
-
- Name of the disk containing operating system.
-
- string
-
-
- ProtectionProfile
-
- Protection profile to be used to enable protection.
-
- ASRProtectionProfile
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
-
-
-
- Id
-
- ID of the protection entity
-
-
- string
-
- string
-
-
-
-
-
- Protection
-
- set 'Enable' to enable protection and 'Disable' to disable protection
-
-
- string
-
- string
-
-
-
-
-
- ProtectedContainerId
-
- ID of the Protected Container
-
-
- string
-
- string
-
-
-
-
-
- ProtectionEntity
-
- Protection Entity object
-
-
- ASRProtectionEntity
-
- ASRProtectionEntity
-
-
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Force
-
- Bypasses confirmation on passing
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- ProtectionProfile
-
- Protection profile to be used to enable protection.
-
-
- ASRProtectionProfile
-
- ASRProtectionProfile
-
-
-
-
-
- OS
-
- OS type e.g. Windows or Linux
-
-
- string
-
- string
-
-
-
-
-
- OSDiskName
-
- Name of the disk containing operating system.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
-$PC = Get-AzureSiteRecoveryProtectionContainer -Name "Cloud1"
-$PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC -Name "VM1"
-Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $PE -Protection Enable -ProtectionProfile $PC.AvailableProtectionProfiles[0] -OS Windows
-
-Name : EnableDr
-ID : 7d980e67-ad8c-45bc-99a6-6d8ca0a4a689
-ClientRequestId : d45eb812-de16-4bff-b4f4-a34ffa4afc5d-2015-02-18 15:31:12Z-P
-State : InProgress
-StateDescription : InProgress
-StartTime : 2/18/2015 3:31:16 PM
-EndTime :
-TargetObjectId : 52fa9f2d-57d4-4036-a46f-b112d2d6ae72
-TargetObjectType : ProtectionEntity
-TargetObjectName : TestVM2
-AllowedActions :
-Tasks : {Prerequisites check for enabling protection, Identifying the replication target, Enablereplication, Starting initial replication...}
-Errors : {}
-
-
- Description
- -----------
- The OS Parameter is mandatory when an on-premise Hyper-v site is protected to azure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- Start-AzureSiteRecoveryTestFailoverJob
+ Remove-AzureSiteRecoveryRecoveryPlan
- The Start-AzureSiteRecoveryTestFailoverJob cmdlet starts the test failover for a protection entity or for a recovery plan in Microsoft Azure Site Recovery. Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet.
+ Remove a Recovery Plan from the current Azure Site Recovery Vault
- Start
- AzureSiteRecoveryTestFailoverJob
+ Remove
+ AzureSiteRecoveryRecoveryPlan
- Start the Test Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the test failover job and success of test failover can be tracked state of the Job using Get-AzureSiteRecoveryJob
+ Remove a Recovery Plan from the current Azure Site Recovery Vault
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- ProtectionContainerId
-
- Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
-
- string
-
-
- ProtectionEntityId
-
- Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
-
- string
-
-
- NetworkType
-
- Specifies the network type to be used for test failover.
-
- string
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- LogicalNetworkId
-
- Specifies the ID of the logical network.
-
- string
-
-
- ProtectionContainerId
-
- Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
-
- string
-
+ Remove-AzureSiteRecoveryRecoveryPlan
- ProtectionEntityId
+ Id
- Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+ Id of the Recovery Plan
string
- NetworkType
+ Force
- Specifies the network type to be used for test failover.
+ Bypasses confirmation on passing
- string
WaitForCompletion
@@ -2925,41 +1962,19 @@ Errors : {}
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- Network
-
- Specifies the network object to be used for test failover.
-
- ASRNetwork
-
-
- NetworkType
-
- Specifies the network type to be used for test failover.
-
- string
-
-
- ProtectionContainerId
+ Remove-AzureSiteRecoveryRecoveryPlan
+
+ RecoveryPlan
- Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+ Recovery Plan object
- string
+ ASRRecoveryPlan
- ProtectionEntityId
+ Force
- Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+ Bypasses confirmation on passing
- string
WaitForCompletion
@@ -2968,43 +1983,1180 @@ Errors : {}
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- ProtectionContainerId
-
- Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
-
- string
-
-
- ProtectionEntityId
-
- Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
-
- string
-
-
- VmNetworkId
-
- Specifies the ID of the virtual machine network.
-
- string
-
-
- NetworkType
-
- Specifies the network type to be used for test failover.
-
- string
-
+
+
+
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Id
+
+ Id of the Recovery Plan
+
+
+ string
+
+ string
+
+
+
+
+
+ RecoveryPlan
+
+ Recovery Plan object
+
+
+ ASRRecoveryPlan
+
+ ASRRecoveryPlan
+
+
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp
+
+ ID : 20329f92-9ed6-4529-8b74-d83309623248
+ ClientRequestId : 6c967844-096f-4ca6-a166-55936fd6d61c-2014-36-06 15:36:40Z-P
+ State : NotStarted
+ StateDescription : NotStarted
+ StartTime :
+ EndTime :
+ AllowedActions : {}
+ Name :
+ Tasks : {}
+ Errors : {}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Restart-AzureSiteRecoveryJob
+
+
+ Restarts the Operation in Azure Site Recovery
+
+
+
+
+ Restart
+ AzureSiteRecoveryJob
+
+
+
+ Restarts the Operation in Azure Site Recovery . This cmdlet is allowed on failed and cancelled jobs . To know allowed actions on a job look for Allowed Actions in job object
+
+
+
+
+ Restart-AzureSiteRecoveryJob
+
+ Id
+
+ Id of the Azure Site Recovery Job
+
+ string
+
+
+
+ Restart-AzureSiteRecoveryJob
+
+ Job
+
+
+
+ ASRJob
+
+
+
+
+
+
+ Id
+
+ Id of the Azure Site Recovery Job
+
+
+ string
+
+ string
+
+
+
+
+
+ Job
+
+
+
+
+ ASRJob
+
+ ASRJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ Restart-AzureSiteRecoveryJob -Id bbf0b839-9aaa-49e1-8354-601c9145966d
+
+ ID : bbf0b839-9aaa-49e1-8354-601c9145966d
+ ClientRequestId : ef42c8b0-640c-4442-960b-349f83d161a5-2014-24-06 14:24:04Z-P
+ State : Failed
+ StateDescription : Failed
+ StartTime : 10/6/2014 9:41:08 AM
+ EndTime : 10/6/2014 9:41:21 AM
+ AllowedActions : {Cancel, Restart}
+ Name : Enable protection
+ Tasks : {Prerequisites check for enabling protection , Identifying replication target, Enable replication,
+ Starting initial replication...}
+ Errors : {CreateProtectionTargetTask}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Resume-AzureSiteRecoveryJob
+
+
+ Resumes a suspended job in Azure Site Recovery
+
+
+
+
+ Resume
+ AzureSiteRecoveryJob
+
+
+
+ Resumes the Operation in Azure Site Recovery . This cmdlet is allowed on suspended jobs . To know allowed actions on a job look for Allowed Actions in job object
+
+
+
+
+ Resume-AzureSiteRecoveryJob
+
+ Id
+
+ ID of the Azure Site Recovery Job
+
+ string
+
+
+ Comments
+
+ User comment can be specified while resuming the Job
+
+ string
+
+
+
+ Resume-AzureSiteRecoveryJob
+
+ Job
+
+ ASR Job object
+
+ ASRJob
+
+
+ Comments
+
+ User comment can be specified while resuming the Job
+
+ string
+
+
+
+
+
+
+ Comments
+
+ User comment can be specified while resuming the Job
+
+
+ string
+
+ string
+
+
+
+
+
+ Id
+
+ ID of the Azure Site Recovery Job
+
+
+ string
+
+ string
+
+
+
+
+
+ Job
+
+ ASR Job object
+
+
+ ASRJob
+
+ ASRJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ $jobs= Get-AzureSiteRecoveryJob; Resume-AzureSiteRecoveryJob -Job $jobs
+
+ ID : d16397fb-cdf1-4972-b677-c333f3c557b4
+ ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P
+ State : Suspended
+ StateDescription : WaitingForManualAction
+ StartTime : 10/6/2014 10:19:28 AM
+ EndTime : 10/6/2014 10:19:31 AM
+ AllowedActions : {Cancel, RestartTestFailoverCleanup}
+ Name : Test failover
+ Tasks : {Recovery plan preflight checks, Create test environment, All groups failover: Pre steps (1),
+ Recovery plan failover...}
+ Errors : {}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureSiteRecoveryProtectionEntity
+
+
+ Sets the Protection on a protection entity for Azure Site Recovery
+
+
+
+
+ Set
+ AzureSiteRecoveryProtectionEntity
+
+
+
+ Sets the Protection on a protection entity for Azure Site Recovery. This is async cmdlet which will only start the operation and return the job object.
+
+
+
+
+ Set-AzureSiteRecoveryProtectionEntity
+
+ Id
+
+ ID of the protection entity
+
+ string
+
+
+ ProtectedContainerId
+
+ ID of the Protected Container
+
+ string
+
+
+ Protection
+
+ set 'Enable' to enable protection and 'Disable' to disable protection
+
+ string
+
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Set-AzureSiteRecoveryProtectionEntity
+
+ Protection
+
+ set 'Enable' to enable protection and 'Disable' to disable protection
+
+ string
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+ ASRProtectionEntity
+
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+
+ OS
+
+ OS type e.g. Windows or Linux
+
+ string
+
+
+ OSDiskName
+
+ Name of the disk containing operating system.
+
+ string
+
+
+ ProtectionProfile
+
+ Protection profile to be used to enable protection.
+
+ ASRProtectionProfile
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+
+
+
+ Id
+
+ ID of the protection entity
+
+
+ string
+
+ string
+
+
+
+
+
+ Protection
+
+ set 'Enable' to enable protection and 'Disable' to disable protection
+
+
+ string
+
+ string
+
+
+
+
+
+ ProtectedContainerId
+
+ ID of the Protected Container
+
+
+ string
+
+ string
+
+
+
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+
+ ASRProtectionEntity
+
+ ASRProtectionEntity
+
+
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ProtectionProfile
+
+ Protection profile to be used to enable protection.
+
+
+ ASRProtectionProfile
+
+ ASRProtectionProfile
+
+
+
+
+
+ OS
+
+ OS type e.g. Windows or Linux
+
+
+ string
+
+ string
+
+
+
+
+
+ OSDiskName
+
+ Name of the disk containing operating system.
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ $PC = Get-AzureSiteRecoveryProtectionContainer -Name "Cloud1"
+ $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC -Name "VM1"
+ Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $PE -Protection Enable -ProtectionProfile $PC.AvailableProtectionProfiles[0] -OS Windows
+
+ Name : EnableDr
+ ID : 7d980e67-ad8c-45bc-99a6-6d8ca0a4a689
+ ClientRequestId : d45eb812-de16-4bff-b4f4-a34ffa4afc5d-2015-02-18 15:31:12Z-P
+ State : InProgress
+ StateDescription : InProgress
+ StartTime : 2/18/2015 3:31:16 PM
+ EndTime :
+ TargetObjectId : 52fa9f2d-57d4-4036-a46f-b112d2d6ae72
+ TargetObjectType : ProtectionEntity
+ TargetObjectName : TestVM2
+ AllowedActions :
+ Tasks : {Prerequisites check for enabling protection, Identifying the replication target, Enablereplication, Starting initial replication...}
+ Errors : {}
+
+
+ Description
+ -----------
+ The OS Parameter is mandatory when an on-premise Hyper-v site is protected to azure
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+
+ The Start-AzureSiteRecoveryTestFailoverJob cmdlet starts the test failover for a protection entity or for a recovery plan in Microsoft Azure Site Recovery. Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet.
+
+
+
+
+ Start
+ AzureSiteRecoveryTestFailoverJob
+
+
+
+ Start the Test Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the test failover job and success of test failover can be tracked state of the Job using Get-AzureSiteRecoveryJob
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ ProtectionContainerId
+
+ Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+
+ string
+
+
+ ProtectionEntityId
+
+ Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ LogicalNetworkId
+
+ Specifies the ID of the logical network.
+
+ string
+
+
+ ProtectionContainerId
+
+ Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+
+ string
+
+
+ ProtectionEntityId
+
+ Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ Network
+
+ Specifies the network object to be used for test failover.
+
+ ASRNetwork
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ ProtectionContainerId
+
+ Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+
+ string
+
+
+ ProtectionEntityId
+
+ Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ ProtectionContainerId
+
+ Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+
+ string
+
+
+ ProtectionEntityId
+
+ Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+
+ string
+
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+ ASRProtectionEntity
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ LogicalNetworkId
+
+ Specifies the ID of the logical network.
+
+ string
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+ ASRProtectionEntity
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -3021,17 +3173,279 @@ Errors : {}
string
-
+
+ Network
+
+ Specifies the network object to be used for test failover.
+
+ ASRNetwork
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+ ASRProtectionEntity
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
ProtectionEntity
Protection Entity object
ASRProtectionEntity
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ RpId
+
+ Specifies the ID of a recovery plan for which to start the job.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ LogicalNetworkId
+
+ Specifies the ID of the logical network.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ Network
+
+ Specifies the network object to be used for test failover.
+
+ ASRNetwork
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ RpId
+
+ Specifies the ID of a recovery plan for which to start the job.
+
+ string
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+ string
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
- NetworkType
+ SecondaryEncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
string
@@ -3051,19 +3465,19 @@ Errors : {}
string
-
- LogicalNetworkId
+
+ RecoveryPlan
- Specifies the ID of the logical network.
+ Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
- string
+ ASRRecoveryPlan
-
- ProtectionEntity
+
+ EncryptionKeyFile
- Protection Entity object
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
- ASRProtectionEntity
+ string
NetworkType
@@ -3072,6 +3486,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -3088,12 +3509,26 @@ Errors : {}
string
-
- Network
+
+ RecoveryPlan
- Specifies the network object to be used for test failover.
+ Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
- ASRNetwork
+ ASRRecoveryPlan
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ LogicalNetworkId
+
+ Specifies the ID of the logical network.
+
+ string
NetworkType
@@ -3103,11 +3538,11 @@ Errors : {}
string
- ProtectionEntity
+ SecondaryEncryptionKeyFile
- Protection Entity object
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
- ASRProtectionEntity
+ string
WaitForCompletion
@@ -3126,16 +3561,16 @@ Errors : {}
string
- ProtectionEntity
+ Network
- Protection Entity object
+ Specifies the network object to be used for test failover.
- ASRProtectionEntity
+ ASRNetwork
-
- VmNetworkId
+
+ EncryptionKeyFile
- Specifies the ID of the virtual machine network.
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
@@ -3146,6 +3581,20 @@ Errors : {}
string
+
+ RecoveryPlan
+
+ Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
+
+ ASRRecoveryPlan
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -3162,10 +3611,17 @@ Errors : {}
string
-
- RpId
+
+ RecoveryPlan
- Specifies the ID of a recovery plan for which to start the job.
+ Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
+
+ ASRRecoveryPlan
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
@@ -3176,6 +3632,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -3183,8 +3646,342 @@ Errors : {}
+
+
+
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+
+ string
+
+ string
+
+
+
+
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+
+ string
+
+ string
+
+
+
+
+
+ LogicalNetworkId
+
+ Specifies the ID of the logical network.
+
+
+ string
+
+ string
+
+
+
+
+
+ Network
+
+ Specifies the network object to be used for test failover.
+
+
+ ASRNetwork
+
+ ASRNetwork
+
+
+
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+
+ string
+
+ string
+
+
+
+
+
+ ProtectionContainerId
+
+ Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+
+
+ string
+
+ string
+
+
+
+
+
+ ProtectionEntity
+
+ Protection Entity object
+
+
+ ASRProtectionEntity
+
+ ASRProtectionEntity
+
+
+
+
+
+ ProtectionEntityId
+
+ Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+
+
+ string
+
+ string
+
+
+
+
+
+ RecoveryPlan
+
+ Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
+
+
+ ASRRecoveryPlan
+
+ ASRRecoveryPlan
+
+
+
+
+
+ RpId
+
+ Specifies the ID of a recovery plan for which to start the job.
+
+
+ string
+
+ string
+
+
+
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+
+ string
+
+ string
+
+
+
+
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+
+ string
+
+ string
+
+
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery
+
+
+ ID : c38eecdc-731c-405b-a61c-08db99aae2fe
+ ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P
+ State : NotStarted
+ StateDescription : NotStarted
+ StartTime :
+ EndTime :
+ AllowedActions : {}
+ Name :
+ Tasks : {}
+ Errors : {}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 2 --------------------------
+
+
+ C:\PS>
+
+
+ $RP = Get-AzureSiteRecoveryRecoveryPlan -Name "RP1"
+ Start-AzureSiteRecoveryTestFailoverJob -RecoveryPlan $RP -Direction PrimaryToRecovery
+
+ Name :
+ ID : 4a991243-a97f-4617-97be-a6e0dc99a2ff
+ ClientRequestId : 0ae1226f-b68d-4131-b2e8-17bb4c19fa29-2015-02-17 14:35:46Z-P
+ State : NotStarted
+ StateDescription : NotStarted
+ StartTime :
+ EndTime :
+ TargetObjectId :
+ TargetObjectType :
+ TargetObjectName :
+ AllowedActions :
+ Tasks : {}
+ Errors : {}
+
+
+ Description
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Start-AzureSiteRecoveryUnplannedFailoverJob
+
+
+
+ The Start-AzureSiteRecoveryUnplannedFailoverJob cmdlet starts the unplanned failover for a protectioned entity or for a recovery plan in Microsoft Azure Site Recovery.
+ Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet.
+
+
+
+
+
+ Start
+ AzureSiteRecoveryUnplannedFailoverJob
+
+
+
+ Start the Unplanned Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the failover job and success of failover can be tracked state of the Job using Get-AzureSiteRecoveryJob
+
+
+
- Start-AzureSiteRecoveryTestFailoverJob
+ Start-AzureSiteRecoveryUnplannedFailoverJob
Direction
@@ -3193,90 +3990,36 @@ Errors : {}
string
- VmNetworkId
-
- Specifies the ID of the virtual machine network.
-
- string
-
-
- LogicalNetworkId
-
- Specifies the ID of the logical network.
-
- string
-
-
- NetworkType
-
- Specifies the network type to be used for test failover.
-
- string
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
+ ProtectionContainerId
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+ Id of the Protection Container
string
- Network
-
- Specifies the network object to be used for test failover.
-
- ASRNetwork
-
-
- NetworkType
+ ProtectionEntityId
- Specifies the network type to be used for test failover.
+ Id of the Protection Entity
string
- RpId
+ EncryptionKeyFile
- Specifies the ID of a recovery plan for which to start the job.
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- VmNetworkId
+ PerformSourceSideActions
- Specifies the ID of the virtual machine network.
+ Its used for indicating whether can do source site operations.
- string
- NetworkType
+ SecondaryEncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
string
@@ -3288,7 +4031,7 @@ Errors : {}
- Start-AzureSiteRecoveryTestFailoverJob
+ Start-AzureSiteRecoveryUnplannedFailoverJob
Direction
@@ -3297,53 +4040,29 @@ Errors : {}
string
- RecoveryPlan
-
- Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
-
- ASRRecoveryPlan
-
-
- NetworkType
+ ProtectionEntity
- Specifies the network type to be used for test failover.
+ Protection Entity object
- string
+ ASRProtectionEntity
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
+ EncryptionKeyFile
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
-
- RecoveryPlan
-
- Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
-
- ASRRecoveryPlan
-
- LogicalNetworkId
+ PerformSourceSideActions
- Specifies the ID of the logical network.
+ Its used for indicating whether can do source site operations.
- string
- NetworkType
+ SecondaryEncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
string
@@ -3355,7 +4074,7 @@ Errors : {}
- Start-AzureSiteRecoveryTestFailoverJob
+ Start-AzureSiteRecoveryUnplannedFailoverJob
Direction
@@ -3364,25 +4083,31 @@ Errors : {}
string
- Network
+ RpId
- Specifies the network object to be used for test failover.
+ Id of the Recovery Plan
- ASRNetwork
+ string
- NetworkType
+ EncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
- RecoveryPlan
+ PerformSourceSideActions
- Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
+ Its used for indicating whether can do source site operations.
- ASRRecoveryPlan
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
WaitForCompletion
@@ -3392,7 +4117,7 @@ Errors : {}
- Start-AzureSiteRecoveryTestFailoverJob
+ Start-AzureSiteRecoveryUnplannedFailoverJob
Direction
@@ -3403,14 +4128,27 @@ Errors : {}
RecoveryPlan
- Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
+ Recovery Plan object
ASRRecoveryPlan
- NetworkType
+ EncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
+
+ PerformSourceSideActions
+
+ Its used for indicating whether can do source site operations.
+
+
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
string
@@ -3438,9 +4176,9 @@ Errors : {}
- LogicalNetworkId
+ EncryptionKeyFile
- Specifies the ID of the logical network.
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
string
@@ -3451,9 +4189,9 @@ Errors : {}
- WaitForCompletion
+ PerformSourceSideActions
- Waits till the operation completes
+ Its used for indicating whether can do source site operations.
SwitchParameter
@@ -3463,23 +4201,10 @@ Errors : {}
-
- RecoveryPlan
-
- Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies.
-
-
- ASRRecoveryPlan
-
- ASRRecoveryPlan
-
-
-
-
-
- RpId
+
+ ProtectionContainerId
- Specifies the ID of a recovery plan for which to start the job.
+ Id of the Protection Container
string
@@ -3503,9 +4228,9 @@ Errors : {}
- ProtectionContainerId
+ ProtectionEntityId
- Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies.
+ Id of the Protection Entity
string
@@ -3515,23 +4240,23 @@ Errors : {}
-
- ProtectionEntityId
+
+ RecoveryPlan
- Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies.
+ Recovery Plan object
- string
+ ASRRecoveryPlan
- string
+ ASRRecoveryPlan
- VmNetworkId
+ RpId
- Specifies the ID of the virtual machine network.
+ Id of the Recovery Plan
string
@@ -3542,9 +4267,9 @@ Errors : {}
- NetworkType
+ SecondaryEncryptionKeyFile
- Specifies the network type to be used for test failover.
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
string
@@ -3554,15 +4279,15 @@ Errors : {}
-
- Network
+
+ WaitForCompletion
- Specifies the network object to be used for test failover.
+ Waits till the operation completes
- ASRNetwork
+ SwitchParameter
- ASRNetwork
+ SwitchParameter
@@ -3625,8 +4350,7 @@ Errors : {}
C:\PS>
- $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery
-
+ $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryUnplannedFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery
ID : c38eecdc-731c-405b-a61c-08db99aae2fe
ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P
@@ -3654,47 +4378,6 @@ Errors : {}
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- $RP = Get-AzureSiteRecoveryRecoveryPlan -Name "RP1"
- Start-AzureSiteRecoveryTestFailoverJob -RecoveryPlan $RP -Direction PrimaryToRecovery
-
- Name :
- ID : 4a991243-a97f-4617-97be-a6e0dc99a2ff
- ClientRequestId : 0ae1226f-b68d-4131-b2e8-17bb4c19fa29-2015-02-17 14:35:46Z-P
- State : NotStarted
- StateDescription : NotStarted
- StartTime :
- EndTime :
- TargetObjectId :
- TargetObjectType :
- TargetObjectName :
- AllowedActions :
- Tasks : {}
- Errors : {}
-
-
- Description
- -----------
-
-
-
-
-
-
-
-
-
-
-
-
@@ -3705,357 +4388,7 @@ Errors : {}
-
-
-
-
-
- Start-AzureSiteRecoveryUnplannedFailoverJob
-
-
- The Start-AzureSiteRecoveryUnplannedFailoverJob cmdlet starts the unplanned failover for a protectioned entity or for a recovery plan in Microsoft Azure Site Recovery.
-Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet.
-
-
-
-
-
- Start
- AzureSiteRecoveryUnplannedFailoverJob
-
-
-
- Start the Unplanned Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the failover job and success of failover can be tracked state of the Job using Get-AzureSiteRecoveryJob
-
-
-
-
- Start-AzureSiteRecoveryUnplannedFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- ProtectionContainerId
-
- Id of the Protection Container
-
- string
-
-
- ProtectionEntityId
-
- Id of the Protection Entity
-
- string
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryUnplannedFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- ProtectionEntity
-
- Protection Entity object
-
- ASRProtectionEntity
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryUnplannedFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- RpId
-
- Id of the Recovery Plan
-
- string
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryUnplannedFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
-
- RecoveryPlan
-
- Recovery Plan object
-
- ASRRecoveryPlan
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
-
-
-
-
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
-
- string
-
- string
-
-
-
-
-
- WaitForCompletion
-
- Waits till the operation completes
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- RecoveryPlan
-
- Recovery Plan object
-
-
- ASRRecoveryPlan
-
- ASRRecoveryPlan
-
-
-
-
-
- RpId
-
- Id of the Recovery Plan
-
-
- string
-
- string
-
-
-
-
-
- ProtectionEntity
-
- Protection Entity object
-
-
- ASRProtectionEntity
-
- ASRProtectionEntity
-
-
-
-
-
- ProtectionEntityId
-
- Id of the Protection Entity
-
-
- string
-
- string
-
-
-
-
-
- ProtectionContainerId
-
- Id of the Protection Container
-
-
- string
-
- string
-
-
-
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
-$PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryUnplannedFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery
-
-ID : c38eecdc-731c-405b-a61c-08db99aae2fe
-ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P
-State : NotStarted
-StateDescription : NotStarted
-StartTime :
-EndTime :
-AllowedActions : {}
-Name :
-Tasks : {}
-Errors : {}
-
- Description
- -----------
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -4085,6 +4418,13 @@ Errors : {}
ASRRecoveryPlan
+
+ Direction
+
+ Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
WaitForCompletion
@@ -4101,6 +4441,13 @@ Errors : {}
string
+
+ Direction
+
+ Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
WaitForCompletion
@@ -4117,6 +4464,13 @@ Errors : {}
ASRProtectionEntity
+
+ Direction
+
+ Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
WaitForCompletion
@@ -4140,6 +4494,13 @@ Errors : {}
string
+
+ Direction
+
+ Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
WaitForCompletion
@@ -4150,6 +4511,19 @@ Errors : {}
+
+ Direction
+
+ Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
+
+
+ string
+
+ string
+
+
+
+
ProtectionContainerId
@@ -4176,15 +4550,15 @@ Errors : {}
-
- WaitForCompletion
+
+ ProtectionEntityId
- Waits for Completion
+ Id of the Protection Entity
- SwitchParameter
+ string
- SwitchParameter
+ string
@@ -4215,15 +4589,15 @@ Errors : {}
-
- ProtectionEntityId
+
+ WaitForCompletion
- Id of the Protection Entity
+ Waits for Completion
- string
+ SwitchParameter
- string
+ SwitchParameter
@@ -4326,7 +4700,6 @@ Errors : {}
-
@@ -4363,6 +4736,13 @@ Errors : {}
ASRRecoveryPlan
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
Optimize
@@ -4376,6 +4756,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -4399,6 +4786,13 @@ Errors : {}
string
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
Optimize
@@ -4412,6 +4806,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -4435,6 +4836,13 @@ Errors : {}
ASRProtectionEntity
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
Optimize
@@ -4448,6 +4856,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -4478,6 +4893,13 @@ Errors : {}
string
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+ string
+
Optimize
@@ -4491,6 +4913,13 @@ Errors : {}
string
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+ string
+
WaitForCompletion
@@ -4514,6 +4943,19 @@ Errors : {}
+
+ EncryptionKeyFile
+
+ Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage.
+
+
+ string
+
+ string
+
+
+
+
Optimize
@@ -4598,6 +5040,19 @@ Errors : {}
+
+ SecondaryEncryptionKeyFile
+
+ Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site.
+
+
+ string
+
+ string
+
+
+
+
WaitForCompletion
@@ -4863,7 +5318,6 @@ Errors : {}
-
@@ -5015,7 +5469,6 @@ Errors : {}
-
@@ -5326,7 +5779,6 @@ Errors : {}
-
@@ -5491,490 +5943,497 @@ Errors : {}
-
-
- New-AzureSiteRecoveryProtectionProfileObject
-
+
+
+ New-AzureSiteRecoveryProtectionProfileObject
+
+
+ Creates a Protection profile object . This is an in memory object to be further supplied for Protection Profile related operations.
+
+
+
+
+ New
+ AzureSiteRecoveryProtectionProfileObject
+
+
- Creates a Protection profile object . This is an in memory object to be further supplied for Protection Profile related operations.
+ Creates a Protection profile object in memory. This command can be used to return a protection profile object to be further supplied for Protection Profile related operations.
-
-
-
- New
- AzureSiteRecoveryProtectionProfileObject
-
-
-
- Creates a Protection profile object in memory. This command can be used to return a protection profile object to be further supplied for Protection Profile related operations.
-
-
-
-
- New-AzureSiteRecoveryProtectionProfileObject
-
- ReplicationFrequencyInSeconds
-
- Replication frequency interval in seconds.
-As of now, only three possible values supported.
-30 seconds, 300 seconds, 900 seconds.
-
- string
-
-
- ReplicationProvider
-
- Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
-
- string
-
+
+
+
+ New-AzureSiteRecoveryProtectionProfileObject
+
+ ReplicationFrequencyInSeconds
+
+
+ Replication frequency interval in seconds.
+ As of now, only three possible values supported.
+ 30 seconds, 300 seconds, 900 seconds.
+
+
+ string
+
+
+ ReplicationProvider
+
+ Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
+
+ string
+
+
+ AllowReplicaDeletion
+
+ Switch parameter indicating whether replica entity deletion is to be enabled.
+
+
+
+ ApplicationConsistentSnapshotFrequencyInHours
+
+ Frequency of Application Consistent Snapshot in hours.
+
+ int
+
+
+ Authentication
+
+ Type of authentication to be used. Possible values are Certificate and Kerberos.
+
+ string
+
+
+ CompressionEnabled
+
+ Switch parameter indicating whether compression is to be Enabled.
+
+
+
+ Force
+
+ Specify this to bypass the confirm action and take the default (Y).
+
+
+
+ Name
+
+ Can be used to provide a name to the protection profile settings object that is to be created.
+
+ string
+
+
+ RecoveryPoints
+
+ Number of hours to retain Recovery points.
+
+ int
+
+
+ ReplicationMethod
+
+ Replication Method either Online - over the network or Offline.
+
+ string
+
+
+ ReplicationPort
+
+ Port on which the replication would take place.
+
+ int
+
+
+ ReplicationStartTime
+
+ Replication Start Time. It should be within the next 24 hours of the start of the job.
+
+ TimeSpan
+
+
+
+ New-AzureSiteRecoveryProtectionProfileObject
+
+ RecoveryAzureStorageAccount
+
+ Azure Storage account name on which the Azure replica entity would be located.
+
+ string
+
+
+ RecoveryAzureSubscription
+
+ Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located.
+
+ string
+
+
+ ReplicationFrequencyInSeconds
+
+
+ Replication frequency interval in seconds.
+ As of now, only three possible values supported.
+ 30 seconds, 300 seconds, 900 seconds.
+
+
+ string
+
+
+ ReplicationProvider
+
+ Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
+
+ string
+
+
+ ApplicationConsistentSnapshotFrequencyInHours
+
+ Frequency of Application Consistent Snapshot in hours.
+
+ int
+
+
+ Force
+
+ Specify this to bypass the confirm action and take the default (Y).
+
+
+
+ Name
+
+ Can be used to provide a name to the protection profile settings object that is to be created.
+
+ string
+
+
+ RecoveryPoints
+
+ Number of hours to retain Recovery points.
+
+ int
+
+
+ ReplicationStartTime
+
+ Replication Start Time. It should be within the next 24 hours of the start of the job.
+
+ TimeSpan
+
+
+
+
+
AllowReplicaDeletion
Switch parameter indicating whether replica entity deletion is to be enabled.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
ApplicationConsistentSnapshotFrequencyInHours
Frequency of Application Consistent Snapshot in hours.
+
int
+
+ int
+
+
+
Authentication
Type of authentication to be used. Possible values are Certificate and Kerberos.
+
string
+
+ string
+
+
+
CompressionEnabled
Switch parameter indicating whether compression is to be Enabled.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
Force
Specify this to bypass the confirm action and take the default (Y).
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
Name
Can be used to provide a name to the protection profile settings object that is to be created.
+
string
+
+ string
+
+
+
-
- RecoveryPoints
-
- Number of hours to retain Recovery points.
-
- int
-
-
- ReplicationMethod
-
- Replication Method either Online - over the network or Offline.
-
- string
-
-
- ReplicationPort
-
- Port on which the replication would take place.
-
- int
-
-
- ReplicationStartTime
-
- Replication Start Time. It should be within the next 24 hours of the start of the job.
-
- TimeSpan
-
-
-
- New-AzureSiteRecoveryProtectionProfileObject
RecoveryAzureStorageAccount
Azure Storage account name on which the Azure replica entity would be located.
+
string
+
+ string
+
+
+
RecoveryAzureSubscription
Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located.
+
string
+
+ string
+
+
+
-
- ReplicationFrequencyInSeconds
+
+ RecoveryPoints
- Replication frequency interval in seconds.
-As of now, only three possible values supported.
-30 seconds, 300 seconds, 900 seconds.
+ Number of hours to retain Recovery points.
+
- string
+ int
+
+ int
+
+
+
- ReplicationProvider
+ ReplicationFrequencyInSeconds
- Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
+
+ Replication frequency interval in seconds.
+ As of now, only three possible values supported.
+ 30 seconds, 300 seconds, 900 seconds.
+
+
string
+
+ string
+
+
+
- ApplicationConsistentSnapshotFrequencyInHours
+ ReplicationMethod
- Frequency of Application Consistent Snapshot in hours.
+ Replication Method either Online - over the network or Offline.
+
- int
+ string
+
+ string
+
+
+
- Force
+ ReplicationPort
- Specify this to bypass the confirm action and take the default (Y).
+ Port on which the replication would take place.
+
+ int
+
+ int
+
+
+
-
- Name
+
+ ReplicationProvider
- Can be used to provide a name to the protection profile settings object that is to be created.
+ Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
+
string
-
-
- RecoveryPoints
-
- Number of hours to retain Recovery points.
-
- int
+
+ string
+
+
+
ReplicationStartTime
Replication Start Time. It should be within the next 24 hours of the start of the job.
+
TimeSpan
+
+ TimeSpan
+
+
+
-
-
-
-
-
- AllowReplicaDeletion
-
- Switch parameter indicating whether replica entity deletion is to be enabled.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- ApplicationConsistentSnapshotFrequencyInHours
-
- Frequency of Application Consistent Snapshot in hours.
-
-
- int
-
- int
-
-
-
-
-
- Authentication
-
- Type of authentication to be used. Possible values are Certificate and Kerberos.
-
-
- string
-
- string
-
-
-
-
-
- CompressionEnabled
-
- Switch parameter indicating whether compression is to be Enabled.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Force
-
- Specify this to bypass the confirm action and take the default (Y).
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Name
-
- Can be used to provide a name to the protection profile settings object that is to be created.
-
-
- string
-
- string
-
-
-
-
-
- RecoveryAzureStorageAccount
-
- Azure Storage account name on which the Azure replica entity would be located.
-
-
- string
-
- string
-
-
-
-
-
- RecoveryAzureSubscription
-
- Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located.
-
-
- string
-
- string
-
-
-
-
-
- RecoveryPoints
-
- Number of hours to retain Recovery points.
-
-
- int
-
- int
-
-
-
-
-
- ReplicationFrequencyInSeconds
-
- Replication frequency interval in seconds.
-As of now, only three possible values supported.
-30 seconds, 300 seconds, 900 seconds.
-
-
- string
-
- string
-
-
-
-
-
- ReplicationMethod
-
- Replication Method either Online - over the network or Offline.
-
-
- string
-
- string
-
-
-
-
-
- ReplicationPort
-
- Port on which the replication would take place.
-
-
- int
-
- int
-
-
-
-
-
- ReplicationProvider
-
- Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
-
-
- string
-
- string
-
-
-
-
-
- ReplicationStartTime
-
- Replication Start Time. It should be within the next 24 hours of the start of the job.
-
-
- TimeSpan
-
- TimeSpan
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ASRProtectionProfile
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ASRProtectionProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
-New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider HyperVReplica -ReplicationMethod Online -ReplicationFrequencyInSeconds 30 -RecoveryPoints 2 -ApplicationConsistentSnapshotFrequencyInHours 1 -CompressionEnabled -ReplicationPort 8085 -ReplicationStartTime 1 -AllowReplicaDeletion
+ New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider HyperVReplica -ReplicationMethod Online -ReplicationFrequencyInSeconds 30 -RecoveryPoints 2 -ApplicationConsistentSnapshotFrequencyInHours 1 -CompressionEnabled -ReplicationPort 8085 -ReplicationStartTime 1 -AllowReplicaDeletion
Name :
ID :
ReplicationProvider : HyperVReplica
HyperVReplicaProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaProviderS
- ettings
- HyperVReplicaAzureProviderSettingsObject :
-
- Description
- -----------
-
-
-
-
-
+ ettings
+ HyperVReplicaAzureProviderSettingsObject :
+
+
+ Description
+ -----------
+
+
+
+
+
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 2 --------------------------
+
+
+ C:\PS>
+
-New-AzureSiteRecoveryProtectionProfileObject -Name protProfile -ReplicationProvider HyperVReplicaAzure -RecoveryAzureSubscription cb53d0c3-bd59-4721-89bc-06916a9147ef -RecoveryAzureStorageAccount test -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -Force
-
-Name : protProfile
-ID :
-ReplicationProvider : HyperVReplicaAzure
-HyperVReplicaProviderSettingsObject :
-HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaAzureProv
- iderSettings
-
- Description
- -----------
-
-
-
-
-
+ New-AzureSiteRecoveryProtectionProfileObject -Name protProfile -ReplicationProvider HyperVReplicaAzure -RecoveryAzureSubscription cb53d0c3-bd59-4721-89bc-06916a9147ef -RecoveryAzureStorageAccount test -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -Force
+
+ Name : protProfile
+ ID :
+ ReplicationProvider : HyperVReplicaAzure
+ HyperVReplicaProviderSettingsObject :
+ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaAzureProv
+ iderSettings
+
+
+ Description
+ -----------
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
@@ -6529,7 +6988,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
@@ -6731,7 +7189,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
@@ -6880,7 +7337,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
@@ -8401,7 +8857,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
@@ -8781,51 +9236,50 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
- New-AzureSiteRecoveryVault
+ New-AzureSiteRecoverySite
- Creates a new Azure Site Recovery Vault
+ Creates an Azure Site Recovery Site
New
- AzureSiteRecoveryVault
+ AzureSiteRecoverySite
- Creates a new Azure Site Recovery Vault
+ Creates Azure Site Recovery Site
- New-AzureSiteRecoveryVault
+ New-AzureSiteRecoverySite
- Location
+ Name
- Geo Location Name
+ Name of the site to be created
string
-
- Name
+
+ Vault
- Vault Name for which the cred file to be generated
+ Vault Object for which the site has to be created
- string
+ ASRVault
- Location
+ Name
- Geo Location Name
+ Name of the site to be created
string
@@ -8835,15 +9289,15 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
- Name
+
+ Vault
- Vault Name for which the cred file to be generated
+ Vault Object for which the site has to be created
- string
+ ASRVault
- string
+ ASRVault
@@ -8906,11 +9360,22 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
C:\PS>
- New-AzureSiteRecoveryVault -Name testVault -Location "West US"
+ New-AzureSiteRecoverySite -Name testSite
- Response
- --------
- Vault has been created
+ ActivityId : 8d5b9957-3a1d-4881-bbee-eaaa704564a7-2015-02-02 04:34:11Z-P
+ AllowedActions : {}
+ DisplayName :
+ EndTime :
+ Errors : {}
+ StartTime :
+ State : NotStarted
+ StateDescription : NotStarted
+ TargetObjectId :
+ TargetObjectName :
+ TargetObjectType : ProtectionEntity
+ Tasks : {}
+ Name :
+ ID : 127f77e6-b7d4-421d-8679-a98319622b99
Description
@@ -8938,7 +9403,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
@@ -9075,7 +9539,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic
-
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml
new file mode 100644
index 000000000000..52c56b569b7f
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+ Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionProfile
+
+ Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionProfile
+
+
+
+
+
+
+ Name
+
+
+ ReplicationProvider
+
+
+ HyperVReplicaProviderSettingsObject
+
+
+ HyperVReplicaAzureProviderSettingsObject
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs
index cba792731dec..a5f372868f32 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs
@@ -169,7 +169,7 @@ public string GenerateAgentAuthenticationHeader(string clientRequestId)
DateTime currentDateTime = DateTime.Now;
currentDateTime = currentDateTime.AddHours(-1);
cikTokenDetails.NotBeforeTimestamp = TimeZoneInfo.ConvertTimeToUtc(currentDateTime);
- cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddHours(6);
+ cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddDays(7);
cikTokenDetails.ClientRequestId = clientRequestId;
cikTokenDetails.Version = new Version(1, 2);
cikTokenDetails.PropertyBag = new Dictionary();
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs
index 387007e0d1e3..34ea1f10b604 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs
@@ -59,17 +59,17 @@ public ProtectionEntityResponse GetAzureSiteRecoveryProtectionEntity(
/// Sets protection on Protection entity.
///
/// Protection Container ID
- /// Virtual Machine ID
+ /// Virtual Machine ID or Replication group Id
/// Enable protection input.
/// Job response
public JobResponse EnableProtection(
string protectionContainerId,
- string virtualMachineId,
+ string protectionEntityId,
EnableProtectionInput input)
{
return this.GetSiteRecoveryClient().ProtectionEntity.EnableProtection(
protectionContainerId,
- virtualMachineId,
+ protectionEntityId,
input,
this.GetRequestHeaders());
}
@@ -78,15 +78,18 @@ public JobResponse EnableProtection(
/// Sets protection on Protection entity.
///
/// Protection Container ID
- /// Virtual Machine ID
+ /// Virtual Machine ID or Replication group Id
+ /// Disable protection input.
/// Job response
- public JobResponse DisbleProtection(
+ public JobResponse DisableProtection(
string protectionContainerId,
- string virtualMachineId)
+ string protectionEntityId,
+ DisableProtectionInput input)
{
return this.GetSiteRecoveryClient().ProtectionEntity.DisableProtection(
protectionContainerId,
- virtualMachineId,
+ protectionEntityId,
+ input,
this.GetRequestHeaders());
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs
index bbc4befa0a78..9a3b52f39556 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs
@@ -78,15 +78,15 @@ public JobResponse StartCreateAndAssociateAzureSiteRecoveryProtectionProfileJob(
/// Deletes and Dissociates Azure Site Recovery Protection Profile.
///
/// Protection Profile ID
- /// Protection Profile Association Input
+ /// Protection Profile Association Input
/// Job response
public JobResponse StartDeleteAndDissociateAzureSiteRecoveryProtectionProfileJob(
string protectionProfileId,
- ProtectionProfileAssociationInput protectionProfileAssociationInput)
+ CreateAndAssociateProtectionProfileInput createAndAssociateProtectionProfileInput)
{
return this.GetSiteRecoveryClient().ProtectionProfile.DissociateAndDelete(
protectionProfileId,
- protectionProfileAssociationInput,
+ createAndAssociateProtectionProfileInput,
this.GetRequestHeaders());
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
index e18e94614222..2b58d3010838 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
@@ -26,10 +26,11 @@ public partial class PSRecoveryServicesClient
///
/// Gets Azure Site Recovery Servers.
///
+ /// Boolean indicating if the request should be signed ACIK
/// Server list response
- public ServerListResponse GetAzureSiteRecoveryServer()
+ public ServerListResponse GetAzureSiteRecoveryServer(bool shouldSignRequest = true)
{
- return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders());
+ return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders(shouldSignRequest));
}
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
index 56fe947c8cba..d1fab161cba3 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
@@ -12,6 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using System;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
using Microsoft.WindowsAzure.Management.SiteRecovery;
@@ -74,5 +75,45 @@ public JobResponse CreateAzureSiteRecoverySite(string siteName, string siteType
return this.GetSiteRecoveryClient().Sites.Create(input, this.GetRequestHeaders(false));
}
+
+ ///
+ /// Method to delete a Site
+ ///
+ /// name of the site
+ /// vault object
+ /// job object for the creation.
+ public JobResponse DeleteAzureSiteRecoverySite(string siteName, ASRVault vault = null)
+ {
+ if (vault != null)
+ {
+ Utilities.UpdateVaultSettings(new ASRVaultCreds()
+ {
+ CloudServiceName = vault.CloudServiceName,
+ ResourceName = vault.Name
+ });
+ }
+
+ string siteID = null;
+ SiteListResponse response = this.GetAzureSiteRecoverySites(vault);
+ foreach (var site in response.Sites)
+ {
+ if (siteName.Equals(site.Name, StringComparison.OrdinalIgnoreCase))
+ {
+ siteID = site.ID;
+ break;
+ }
+ }
+
+ if (string.IsNullOrEmpty(siteID))
+ {
+ // Site does not exist
+ throw new InvalidOperationException(
+ string.Format(
+ Properties.Resources.SiteDetailsNotValid,
+ siteName));
+ }
+
+ return this.GetSiteRecoveryClient().Sites.Delete(siteID, this.GetRequestHeaders(false));
+ }
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs
new file mode 100644
index 000000000000..c04ded887d20
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs
@@ -0,0 +1,104 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using Microsoft.WindowsAzure;
+using Microsoft.WindowsAzure.Management.SiteRecovery;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Recovery services convenience client.
+ ///
+ public partial class PSRecoveryServicesClient
+ {
+ ///
+ /// Gets Azure Site Recovery Storage pool mappings.
+ ///
+ /// Primary server ID
+ /// Recovery server ID
+ /// Storage pool mapping list response
+ public StoragePoolMappingListResponse GetAzureSiteRecoveryStoragePoolMappings(
+ string primaryServerId,
+ string recoveryServerId)
+ {
+ return this.GetSiteRecoveryClient()
+ .StoragePoolMappings
+ .List(primaryServerId, recoveryServerId, this.GetRequestHeaders());
+ }
+
+ ///
+ /// Create Azure Site Recovery Storage pool mapping.
+ ///
+ /// Primary server Id
+ /// Primary array Id
+ /// Primary storage pool Id
+ /// Recovery server Id
+ /// Recovery array Id
+ /// Recovery storage pool Id
+ /// Job response
+ public JobResponse NewAzureSiteRecoveryStoragePoolMapping(
+ string primaryServerId,
+ string primaryArrayId,
+ string primaryStoragePoolId,
+ string recoveryServerId,
+ string recoveryArrayId,
+ string recoveryStoragePoolId)
+ {
+ StoragePoolMappingInput parameters = new StoragePoolMappingInput();
+ parameters.PrimaryServerId = primaryServerId;
+ parameters.PrimaryArrayId = primaryArrayId;
+ parameters.PrimaryStoragePoolId = primaryStoragePoolId;
+ parameters.RecoveryServerId = recoveryServerId;
+ parameters.RecoveryArrayId = recoveryArrayId;
+ parameters.RecoveryStoragePoolId = recoveryStoragePoolId;
+
+ return this.GetSiteRecoveryClient()
+ .StoragePoolMappings
+ .Create(parameters, this.GetRequestHeaders());
+ }
+
+ ///
+ /// Delete Azure Site Recovery Storage pool mapping.
+ ///
+ /// Primary server Id
+ /// Primary array Id
+ /// Primary storage pool Id
+ /// Recovery server Id
+ /// Recovery array Id
+ /// Recovery storage pool Id
+ /// Job response
+ public JobResponse RemoveAzureSiteRecoveryStoragePoolMapping(
+ string primaryServerId,
+ string primaryArrayId,
+ string primaryStoragePoolId,
+ string recoveryServerId,
+ string recoveryArrayId,
+ string recoveryStoragePoolId)
+ {
+ StoragePoolMappingInput parameters = new StoragePoolMappingInput();
+ parameters.PrimaryServerId = primaryServerId;
+ parameters.PrimaryArrayId = primaryArrayId;
+ parameters.PrimaryStoragePoolId = primaryStoragePoolId;
+ parameters.RecoveryServerId = recoveryServerId;
+ parameters.RecoveryArrayId = recoveryArrayId;
+ parameters.RecoveryStoragePoolId = recoveryStoragePoolId;
+
+ return this.GetSiteRecoveryClient()
+ .StoragePoolMappings
+ .Delete(parameters, this.GetRequestHeaders());
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs
index 08e4fed90959..683bd48efa28 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs
@@ -57,7 +57,7 @@ public VirtualMachineResponse GetAzureSiteRecoveryVirtualMachine(
public JobResponse UpdateVmProperties(
string protectionContainerId,
string virtualMachineId,
- UpdateVmPropertiesInput updateVmPropertiesInput)
+ VMProperties updateVmPropertiesInput)
{
return this.GetSiteRecoveryClient().Vm.UpdateVmProperties(
protectionContainerId,
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs
index 44c18450ac02..c3105f4840f0 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs
@@ -33,5 +33,16 @@ public RecoveryServicesOperationStatusResponse CreateVault(string cloudServiceNa
{
return this.GetRecoveryServicesClient.Vaults.Create(cloudServiceName, vaultName, vaultCreateInput);
}
+
+ ///
+ /// Method to delete Azure Site Recovery Vault
+ ///
+ /// name of the cloud service
+ /// name of the vault
+ /// Operation response object.
+ public AzureOperationResponse DeleteVault(string cloudServiceName, string vaultName)
+ {
+ return this.GetRecoveryServicesClient.Vaults.Delete(cloudServiceName, vaultName);
+ }
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs
index 82e9046ea72d..64e1ebf23e04 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs
@@ -317,6 +317,42 @@ internal static string RemoveRPWhatIfMessage {
}
}
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove Site {0}.
+ ///
+ internal static string RemoveSiteWarning {
+ get {
+ return ResourceManager.GetString("RemoveSiteWarning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Removes Site.
+ ///
+ internal static string RemoveSiteWhatIfMessage {
+ get {
+ return ResourceManager.GetString("RemoveSiteWhatIfMessage", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove Vault {0}.
+ ///
+ internal static string RemoveVaultWarning {
+ get {
+ return ResourceManager.GetString("RemoveVaultWarning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Removes Vault.
+ ///
+ internal static string RemoveVaultWhatIfMessage {
+ get {
+ return ResourceManager.GetString("RemoveVaultWhatIfMessage", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Replication Start Time span value cannot be greater then 24 hours..
///
@@ -344,6 +380,15 @@ internal static string ServerNotFound {
}
}
+ ///
+ /// Looks up a localized string similar to Site name {0} is not valid. Please try again with the correct site details..
+ ///
+ internal static string SiteDetailsNotValid {
+ get {
+ return ResourceManager.GetString("SiteDetailsNotValid", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Please enter the storage account name details in the protection profile..
///
@@ -400,6 +445,15 @@ internal static string ValidationUnsuccessfulWarning {
}
}
+ ///
+ /// Looks up a localized string similar to Vault {0} cannot be deleted as it contains registered servers. Unregister them and then retry the operation..
+ ///
+ internal static string VaultCannotBeDeleted {
+ get {
+ return ResourceManager.GetString("VaultCannotBeDeleted", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Vault has been created.
///
@@ -409,6 +463,15 @@ internal static string VaultCreationSuccessMessage {
}
}
+ ///
+ /// Looks up a localized string similar to Vault has been deleted.
+ ///
+ internal static string VaultDeletionSuccessMessage {
+ get {
+ return ResourceManager.GetString("VaultDeletionSuccessMessage", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Vault {0} is not associated with the given subscription..
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx
index 3d362f7f9f51..ba9fb4723d6d 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx
@@ -256,4 +256,25 @@ Please provide a storage account with the same location as that of the vault.
The Subscription or Storage account couldn’t be validated. For failovers to be successful, the Subscription should belong to your account, the Storage account to the Subscription and Storage account location must be the same as location of your Vault.
+
+ Are you sure you want to remove Site {0}
+
+
+ Removes Site
+
+
+ Are you sure you want to remove Vault {0}
+
+
+ Removes Vault
+
+
+ Site name {0} is not valid. Please try again with the correct site details.
+
+
+ Vault has been deleted
+
+
+ Vault {0} cannot be deleted as it contains registered servers. Unregister them and then retry the operation.
+
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs
index f8e28474a5a9..7ea12e459864 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs
@@ -49,10 +49,12 @@ public class CreateAzureSiteRecoveryProtectionProfileObject : RecoveryServicesCm
///
[Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)]
[Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan, Mandatory = true)]
[ValidateNotNullOrEmpty]
[ValidateSet(
Constants.HyperVReplica,
- Constants.HyperVReplicaAzure)]
+ Constants.HyperVReplicaAzure,
+ Constants.San)]
public string ReplicationProvider { get; set; }
///
@@ -149,12 +151,46 @@ public class CreateAzureSiteRecoveryProtectionProfileObject : RecoveryServicesCm
[DefaultValue(false)]
public SwitchParameter AllowReplicaDeletion { get; set; }
+ ///
+ /// Gets or sets the primary cloud id of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryContainerId { get; set; }
+
+ ///
+ /// Gets or sets the recovery cloud id of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryContainerId { get; set; }
+
+ ///
+ /// Gets or sets the primary array id of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryArrayId { get; set; }
+
+ ///
+ /// Gets or sets the recovery array id of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryArrayId { get; set; }
+
///
/// Gets or sets switch parameter. On passing, command does not ask for confirmation.
///
[Parameter(Mandatory = false)]
public SwitchParameter Force { get; set; }
+ ///
+ /// Gets or sets a value indicating - should the VM's data in azure storage be encrypted?
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [DefaultValue(false)]
+ public SwitchParameter EncryptStoredData { get; set; }
#endregion Parameters
///
@@ -172,6 +208,9 @@ public override void ExecuteCmdlet()
case ASRParameterSets.EnterpriseToAzure:
this.EnterpriseToAzureProtectionProfileObject();
break;
+ case ASRParameterSets.EnterpriseToEnterpriseSan:
+ this.EnterpriseToEnterpriseSanProtectionProfileObject();
+ break;
}
}
catch (Exception exception)
@@ -180,16 +219,6 @@ public override void ExecuteCmdlet()
}
}
- ///
- /// Handles interrupts.
- ///
- protected override void StopProcessing()
- {
- // Ctrl + C and etc
- base.StopProcessing();
- this.StopProcessingFlag = true;
- }
-
///
/// Creates an E2A Protection Profile Object
///
@@ -260,8 +289,7 @@ private void ProceedToCreateProtectionProfileObject()
{
RecoveryAzureSubscription = this.RecoveryAzureSubscription,
RecoveryAzureStorageAccountName = this.RecoveryAzureStorageAccount,
- //// Currently Data Encryption is not supported.
- EncryptStoredData = false,
+ EncryptStoredData = this.EncryptStoredData,
ReplicationFrequencyInSeconds = replicationFrequencyInSeconds,
RecoveryPoints = this.RecoveryPoints,
ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours,
@@ -311,5 +339,43 @@ private void EnterpriseToEnterpriseProtectionProfileObject()
this.WriteObject(protectionProfile);
}
+
+ ///
+ /// Creates an E2E San Protection Profile object
+ ///
+ private void EnterpriseToEnterpriseSanProtectionProfileObject()
+ {
+ if (string.Compare(this.ReplicationProvider, Constants.San, StringComparison.OrdinalIgnoreCase) != 0)
+ {
+ throw new InvalidOperationException(
+ string.Format(
+ Properties.Resources.IncorrectReplicationProvider,
+ this.ReplicationProvider));
+ }
+
+ string primaryCloudId = string.Empty;
+ string recoveryCloudId = string.Empty;
+
+ Utilities.GetCloudIdFromContainerId(this.PrimaryContainerId, out primaryCloudId);
+ Utilities.GetCloudIdFromContainerId(this.RecoveryContainerId, out recoveryCloudId);
+
+ ASRProtectionProfile protectionProfile = new ASRProtectionProfile()
+ {
+ // In case of SAN we don't have a protection profile associated yet. So we are giving a dummy ID now.
+ ID = this.PrimaryContainerId,
+ ReplicationProvider = this.ReplicationProvider,
+ HyperVReplicaAzureProviderSettingsObject = null,
+ HyperVReplicaProviderSettingsObject = null,
+ SanProviderSettingsObject = new SanProviderSettings()
+ {
+ CloudId = primaryCloudId,
+ RemoteCloudId = recoveryCloudId,
+ ArrayUniqueId = this.PrimaryArrayId,
+ RemoteArrayUniqueId = this.RecoveryArrayId
+ }
+ };
+
+ this.WriteObject(protectionProfile);
+ }
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs
index 2e854cc91e8e..571c5dfa0331 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs
@@ -14,6 +14,7 @@
using System;
using System.Collections.Generic;
+using System.IO;
using System.Management.Automation;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
@@ -79,7 +80,12 @@ public override void ExecuteCmdlet()
///
private void GetRecoveryPlanFile()
{
- RecoveryPlanXmlOuput recoveryPlanXmlOuput =
+ if (Directory.Exists(this.Path))
+ {
+ throw new ArgumentException("The input path is a directory. Please provide file path. Check the examples of the commandlet", "Path");
+ }
+
+ RecoveryPlanXmlOuput recoveryPlanXmlOuput =
RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlanFile(this.Id);
System.IO.File.WriteAllText(this.Path, recoveryPlanXmlOuput.RecoveryPlanXml);
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs
new file mode 100644
index 000000000000..54cb565b1186
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs
@@ -0,0 +1,77 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.WindowsAzure;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Retrieves Azure Site Recovery Storage pool mappings.
+ ///
+ [Cmdlet(VerbsCommon.Get, "AzureSiteRecoveryStoragePoolMapping")]
+ [OutputType(typeof(IEnumerable))]
+ public class GetAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase
+ {
+ #region Parameters
+ ///
+ /// Gets or sets Primary Server object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRServer PrimaryServer { get; set; }
+
+ ///
+ /// Gets or sets Recovery Server object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRServer RecoveryServer { get; set; }
+
+ #endregion Parameters
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ StoragePoolMappingListResponse storagePoolMappingListResponse =
+ RecoveryServicesClient
+ .GetAzureSiteRecoveryStoragePoolMappings(this.PrimaryServer.ID, this.RecoveryServer.ID);
+
+ this.WriteStoragePoolMappings(storagePoolMappingListResponse.StoragePoolMappings);
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+
+ ///
+ /// Write Storage pool mappings.
+ ///
+ /// List of Storage pool mappings
+ private void WriteStoragePoolMappings(IList storagePoolMappings)
+ {
+ this.WriteObject(storagePoolMappings.Select(spm => new ASRStoragePoolMapping(spm)), true);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs
new file mode 100644
index 000000000000..8169aec23145
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs
@@ -0,0 +1,101 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.WindowsAzure;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Creates Azure Site Recovery Storage pool mapping.
+ ///
+ [Cmdlet(VerbsCommon.New, "AzureSiteRecoveryStoragePoolMapping")]
+ [OutputType(typeof(ASRJob))]
+ public class NewAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase
+ {
+ #region Parameters
+ ///
+ /// Job response.
+ ///
+ private JobResponse jobResponse = null;
+
+ ///
+ /// Gets or sets Primary Storage object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRStorage PrimaryStorage { get; set; }
+
+ ///
+ /// Gets or sets Primary Storage pool id.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryStoragePoolId { get; set; }
+
+ ///
+ /// Gets or sets Recovery Storage object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRStorage RecoveryStorage { get; set; }
+
+ ///
+ /// Gets or sets Recovery Storage pool id.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryStoragePoolId { get; set; }
+ #endregion Parameters
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ this.jobResponse =
+ RecoveryServicesClient
+ .NewAzureSiteRecoveryStoragePoolMapping(
+ this.PrimaryStorage.ServerId,
+ this.PrimaryStorage.ID,
+ this.PrimaryStoragePoolId,
+ this.RecoveryStorage.ServerId,
+ this.RecoveryStorage.ID,
+ this.RecoveryStoragePoolId);
+
+ this.WriteJob(this.jobResponse.Job);
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+
+ ///
+ /// Writes Job.
+ ///
+ /// JOB object
+ private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job)
+ {
+ this.WriteObject(new ASRJob(job));
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs
new file mode 100644
index 000000000000..b36183995a4b
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs
@@ -0,0 +1,85 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Removes Azure Site Recovery Site.
+ ///
+ [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoverySite")]
+ [OutputType(typeof(ASRJob))]
+ public class RemoveAzureSiteRecoverySite : RecoveryServicesCmdletBase
+ {
+ #region Parameters
+
+ ///
+ /// Gets or sets the name of the site to be deleted
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.Default, Mandatory = true, HelpMessage = "Name of the site to be deleted")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ ///
+ /// Gets or sets the vault
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.Default, Mandatory = false, HelpMessage = "Vault Object for which the site has to be deleted")]
+ [ValidateNotNullOrEmpty]
+ public ASRVault Vault { get; set; }
+
+ ///
+ /// Gets or sets switch parameter. On passing, command does not ask for confirmation.
+ ///
+ [Parameter(Mandatory = false)]
+ public SwitchParameter Force { get; set; }
+
+ #endregion
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ // Check if site has registered servers and prevent the operation
+ // But the rest api is exposed and can be called directly
+ // - best to add this validation in service then before deleting a site
+ this.ConfirmAction(
+ this.Force.IsPresent,
+ string.Format(Properties.Resources.RemoveSiteWarning, this.Name),
+ string.Format(Properties.Resources.RemoveSiteWhatIfMessage),
+ this.Name,
+ () =>
+ {
+ JobResponse response =
+ RecoveryServicesClient.DeleteAzureSiteRecoverySite(
+ this.Name,
+ this.Vault);
+
+ this.WriteObject(response.Job, true);
+ });
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+ }
+}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs
new file mode 100644
index 000000000000..b22152bb349e
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs
@@ -0,0 +1,101 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.WindowsAzure;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Creates Azure Site Recovery Storage pool mapping.
+ ///
+ [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoveryStoragePoolMapping")]
+ [OutputType(typeof(ASRJob))]
+ public class RemoveAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase
+ {
+ #region Parameters
+ ///
+ /// Job response.
+ ///
+ private JobResponse jobResponse = null;
+
+ ///
+ /// Gets or sets Primary Storage object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRStorage PrimaryStorage { get; set; }
+
+ ///
+ /// Gets or sets Primary Storage pool id.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public string PrimaryStoragePoolId { get; set; }
+
+ ///
+ /// Gets or sets Recovery Storage object.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRStorage RecoveryStorage { get; set; }
+
+ ///
+ /// Gets or sets Recovery Storage pool id.
+ ///
+ [Parameter(Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryStoragePoolId { get; set; }
+ #endregion Parameters
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ this.jobResponse =
+ RecoveryServicesClient
+ .RemoveAzureSiteRecoveryStoragePoolMapping(
+ this.PrimaryStorage.ServerId,
+ this.PrimaryStorage.ID,
+ this.PrimaryStoragePoolId,
+ this.RecoveryStorage.ServerId,
+ this.RecoveryStorage.ID,
+ this.RecoveryStoragePoolId);
+
+ this.WriteJob(this.jobResponse.Job);
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+
+ ///
+ /// Writes Job.
+ ///
+ /// JOB object
+ private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job)
+ {
+ this.WriteObject(new ASRJob(job));
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs
new file mode 100644
index 000000000000..9ab0a475c410
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs
@@ -0,0 +1,104 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Management.Automation;
+using System.Net;
+using Microsoft.Azure.Commands.RecoveryServices.Properties;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
+using Microsoft.WindowsAzure.Management.RecoveryServices.Models;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Used to initiate a vault remove operation.
+ ///
+ [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoveryVault")]
+ [OutputType(typeof(VaultOperationOutput))]
+ public class RemoveAzureSiteRecoveryVault : RecoveryServicesCmdletBase
+ {
+ ///
+ /// Holds the Name of the vault.
+ ///
+ private string targetName = string.Empty;
+
+ #region Parameters
+
+ ///
+ /// Gets or sets the vault name
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.ByParam, Mandatory = true, HelpMessage = "Vault to be deleted")]
+ [ValidateNotNullOrEmpty]
+ public ASRVault Vault { get; set; }
+
+ ///
+ /// Gets or sets switch parameter. On passing, command does not ask for confirmation.
+ ///
+ [Parameter(Mandatory = false)]
+ public SwitchParameter Force { get; set; }
+
+ #endregion
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ // Update vault settings with the working vault
+ Utilities.UpdateVaultSettings(new ASRVaultCreds()
+ {
+ CloudServiceName = this.Vault.CloudServiceName,
+ ResourceName = this.Vault.Name
+ });
+
+ // Check if vault has servers registered to it - prevent the operation.
+ ServerListResponse serverListResponse =
+ RecoveryServicesClient.GetAzureSiteRecoveryServer(false);
+
+ if (serverListResponse.Servers.Count != 0)
+ {
+ throw new InvalidOperationException(
+ string.Format(
+ Properties.Resources.VaultCannotBeDeleted,
+ this.Vault.Name));
+ }
+
+ this.ConfirmAction(
+ this.Force.IsPresent,
+ string.Format(Properties.Resources.RemoveVaultWarning, this.Vault.Name),
+ string.Format(Properties.Resources.RemoveVaultWhatIfMessage),
+ this.Vault.Name,
+ () =>
+ {
+ AzureOperationResponse response = RecoveryServicesClient.DeleteVault(this.Vault.CloudServiceName, this.Vault.Name);
+
+ VaultOperationOutput output = new VaultOperationOutput()
+ {
+ Response = response.StatusCode == HttpStatusCode.OK ? Resources.VaultDeletionSuccessMessage : response.StatusCode.ToString()
+ };
+
+ this.WriteObject(output, true);
+ });
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+ }
+}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs
index 181e3b8ea9d0..40a7429ae0b5 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs
@@ -61,6 +61,8 @@ public class SetAzureSiteRecoveryProtectionEntity : RecoveryServicesCmdletBase
/// Gets or sets Protection Entity Object.
///
[Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = true)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)]
+ [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = true)]
[ValidateNotNullOrEmpty]
public ASRProtectionEntity ProtectionEntity { get; set; }
@@ -109,6 +111,44 @@ public class SetAzureSiteRecoveryProtectionEntity : RecoveryServicesCmdletBase
///
[Parameter(Mandatory = false)]
public SwitchParameter Force { get; set; }
+
+ ///
+ /// Gets or sets RPO in seconds.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public int RPO { get; set; }
+
+ ///
+ /// Gets or sets Replication type (sync/async).
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ [ValidateSet(
+ Constants.Sync,
+ Constants.Async)]
+ public string Replicationtype { get; set; }
+
+ ///
+ /// Gets or sets Recovery array id.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryArrayId { get; set; }
+
+ ///
+ /// Gets or sets switch parameter. On passing true, replica LUNs will get deleted.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = false)]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter DeleteReplicaLuns { get; set; }
+
+ ///
+ /// Gets or sets Recovery container id for SAN to delete replica LUNs.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = false)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryContainerId { get; set; }
#endregion Parameters
///
@@ -118,6 +158,8 @@ public override void ExecuteCmdlet()
{
switch (this.ParameterSetName)
{
+ case ASRParameterSets.EnableReplicationGroup:
+ case ASRParameterSets.DisableReplicationGroup:
case ASRParameterSets.ByPEObject:
this.Id = this.ProtectionEntity.ID;
this.ProtectionContainerId = this.ProtectionEntity.ProtectionContainerId;
@@ -162,23 +204,55 @@ public override void ExecuteCmdlet()
{
try
{
- if (this.Protection == Constants.EnableProtection)
+ string profileId = string.Empty;
+ string replicationProvider = null;
+
+ if (this.ProtectionEntity == null)
{
- string profileId = string.Empty;
- var input = new EnableProtectionInput();
+ var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity(
+ this.ProtectionContainerId,
+ this.Id);
+ this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity);
+ }
- if (this.ProtectionEntity == null)
+ // Get the replciation provider from profile object otherwise assume its E2E.
+ // Let the call go without profileId set.
+ if (this.ProtectionProfile != null)
+ {
+ profileId = this.ProtectionProfile.ID;
+ replicationProvider = this.ProtectionProfile.ReplicationProvider;
+ }
+ else
+ {
+ this.WriteWarningWithTimestamp(
+ string.Format(
+ Properties.Resources.MandatoryParamFromNextRelease,
+ "ProtectionProfile"));
+ string pcId = this.ProtectionContainerId ?? this.ProtectionEntity.ProtectionContainerId;
+ var pc = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(
+ pcId);
+
+ // PC will have all profiles associated with same replciation providers only.
+ replicationProvider =
+ pc.ProtectionContainer.AvailableProtectionProfiles.Count < 1 ?
+ null :
+ pc.ProtectionContainer.AvailableProtectionProfiles[0].ReplicationProvider;
+
+ if (replicationProvider != Constants.HyperVReplica &&
+ replicationProvider != Constants.San)
{
- var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity(
- this.ProtectionContainerId,
- this.Id);
- this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity);
+ throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container.");
}
+ }
- // Get the replciation provider from profile object otherwise assume its E2E.
- // Let the call go without profileId set.
- string replicationProvider = null;
+ if (this.ParameterSetName == ASRParameterSets.ByIDs)
+ {
+ this.ValidateUsageById(replicationProvider, "Id");
+ }
+ if (this.Protection == Constants.EnableProtection)
+ {
+ var input = new EnableProtectionInput();
if (this.ProtectionProfile != null)
{
profileId = this.ProtectionProfile.ID;
@@ -196,18 +270,27 @@ public override void ExecuteCmdlet()
null :
pc.ProtectionContainer.AvailableProtectionProfiles[0].ReplicationProvider;
- if (replicationProvider != Constants.HyperVReplica)
+ if (replicationProvider != Constants.HyperVReplica &&
+ replicationProvider != Constants.San)
{
throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container.");
}
}
- if (this.ParameterSetName == ASRParameterSets.ByIDs)
+ if (replicationProvider == Constants.San)
{
- this.ValidateUsageById(replicationProvider, "Id");
- }
+ SanEnableProtectionInput sanInput = new SanEnableProtectionInput();
+ sanInput.FabricId = this.ProtectionEntity.ServerId;
+ sanInput.FabricReplicationGroupId = this.ProtectionEntity.ID;
+
+ sanInput.CloudId = this.ProtectionContainerId;
+ sanInput.RemoteArrayId = this.RecoveryArrayId;
+ sanInput.ReplicationType = this.Replicationtype;
+ sanInput.RecoveryPointObjective = this.RPO;
- if (replicationProvider == Constants.HyperVReplicaAzure)
+ input.ReplicationProviderInput = DataContractUtils.Serialize(sanInput);
+ }
+ else if (replicationProvider == Constants.HyperVReplicaAzure)
{
input.ProtectionProfileId = this.ProtectionProfile.ID;
AzureEnableProtectionInput azureInput = new AzureEnableProtectionInput();
@@ -256,10 +339,25 @@ public override void ExecuteCmdlet()
}
else
{
+ DisableProtectionInput input = null;
+
+ if (replicationProvider == Constants.San)
+ {
+ string recoveryCloudId = string.Empty;
+ Utilities.GetCloudIdFromContainerId(this.RecoveryContainerId, out recoveryCloudId);
+ input = new DisableProtectionInput();
+ SanDisableProtectionInput sanInput = new SanDisableProtectionInput();
+ sanInput.DeleteReplicaLuns = this.DeleteReplicaLuns;
+ sanInput.TargetCloudIdForLunDeletion = recoveryCloudId;
+
+ input.ReplicationProviderInput = DataContractUtils.Serialize(sanInput);
+ }
+
this.jobResponse =
- RecoveryServicesClient.DisbleProtection(
+ RecoveryServicesClient.DisableProtection(
this.ProtectionContainerId,
- this.Id);
+ this.Id,
+ input);
}
this.WriteJob(this.jobResponse.Job);
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs
new file mode 100644
index 000000000000..0afc2ace12c1
--- /dev/null
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs
@@ -0,0 +1,332 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
+using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
+using Microsoft.WindowsAzure.Management.Storage.Models;
+
+namespace Microsoft.Azure.Commands.RecoveryServices
+{
+ ///
+ /// Updates Azure Site Recovery Protection Profile.
+ /// Protection profile must be associated with the protection container.
+ ///
+ [Cmdlet(VerbsCommon.Set, "AzureSiteRecoveryProtectionProfile", DefaultParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [OutputType(typeof(ASRJob))]
+ public class SetAzureSiteRecoveryProtectionProfile : RecoveryServicesCmdletBase
+ {
+ ///
+ /// Job response.
+ ///
+ private JobResponse jobResponse = null;
+
+ #region Parameters
+
+ ///
+ /// Gets or sets Protection Profile object.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true, ValueFromPipeline = true)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true, ValueFromPipeline = true)]
+ [ValidateNotNullOrEmpty]
+ public ASRProtectionProfile ProtectionProfile { get; set; }
+
+ ///
+ /// Gets or sets a value for Replication Method of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [ValidateNotNullOrEmpty]
+ [ValidateSet(
+ Constants.OnlineReplicationMethod,
+ Constants.OfflineReplicationMethod)]
+ public string ReplicationMethod { get; set; }
+
+ ///
+ /// Gets or sets Recovery Azure Storage Account Name of the Protection Profile for E2A scenarios.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryAzureStorageAccount { get; set; }
+
+ ///
+ /// Gets or sets Replication Frequency of the Protection Profile in seconds.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [ValidateNotNullOrEmpty]
+ [ValidateSet(
+ Constants.Thirty,
+ Constants.ThreeHundred,
+ Constants.NineHundred)]
+ public string ReplicationFrequencyInSeconds { get; set; }
+
+ ///
+ /// Gets or sets Recovery Points of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [ValidateNotNullOrEmpty]
+ public int? RecoveryPoints { get; set; }
+
+ ///
+ /// Gets or sets Application Consistent Snapshot Frequency of the Protection Profile in hours.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [ValidateNotNullOrEmpty]
+ public int? ApplicationConsistentSnapshotFrequencyInHours { get; set; }
+
+ ///
+ /// Gets or sets a value indicating whether Compression needs to be Enabled on the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter? CompressionEnabled { get; set; }
+
+ ///
+ /// Gets or sets the Replication Port of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [ValidateNotNullOrEmpty]
+ public ushort? ReplicationPort { get; set; }
+
+ ///
+ /// Gets or sets the Replication Port of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [ValidateNotNullOrEmpty]
+ [ValidateSet(
+ Constants.AuthenticationTypeCertificate,
+ Constants.AuthenticationTypeKerberos)]
+ public string Authentication { get; set; }
+
+ ///
+ /// Gets or sets Replication Start time of the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)]
+ [ValidateNotNullOrEmpty]
+ public TimeSpan? ReplicationStartTime { get; set; }
+
+ ///
+ /// Gets or sets a value indicating whether Replica should be Deleted on
+ /// disabling protection of a protection entity protected by the Protection Profile.
+ ///
+ [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter? AllowReplicaDeletion { get; set; }
+
+ #endregion Parameters
+
+ ///
+ /// ProcessRecord of the command.
+ ///
+ public override void ExecuteCmdlet()
+ {
+ try
+ {
+ switch (this.ParameterSetName)
+ {
+ case ASRParameterSets.EnterpriseToAzure:
+ this.EnterpriseToAzureUpdate();
+ break;
+ case ASRParameterSets.EnterpriseToEnterprise:
+ this.EnterpriseToEnterpriseUpdate();
+ break;
+ }
+ }
+ catch (Exception exception)
+ {
+ this.HandleException(exception);
+ }
+ }
+
+ ///
+ /// Updates an E2A Protection Profile
+ ///
+ private void EnterpriseToAzureUpdate()
+ {
+ if (string.Compare(this.ProtectionProfile.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) != 0)
+ {
+ throw new InvalidOperationException(
+ string.Format(
+ Properties.Resources.IncorrectReplicationProvider,
+ this.ProtectionProfile.ReplicationProvider));
+ }
+
+ //// Verify whether the storage account is associated with the account or not.
+ //// PSRecoveryServicesClientHelper.ValidateStorageAccountAssociation(this.RecoveryAzureStorageAccount);
+
+ PSRecoveryServicesClient.ValidateReplicationStartTime(this.ReplicationStartTime);
+
+ // The user should always retrieve the protection profile object before passing it on to the update cmdlet.
+ // Otherwise old data might get updated as new
+ // How do we prevent the user from modifying the object itself?
+ HyperVReplicaAzureProtectionProfileInput hyperVReplicaAzureProtectionProfileInput
+ = new HyperVReplicaAzureProtectionProfileInput()
+ {
+ ApplicationConsistentSnapshotFrequencyInHours =
+ this.ApplicationConsistentSnapshotFrequencyInHours.HasValue
+ ? this.ApplicationConsistentSnapshotFrequencyInHours.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours,
+ OnlineReplicationStartTime =
+ this.ReplicationStartTime.HasValue
+ ? this.ReplicationStartTime.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ReplicationStartTime,
+ RecoveryPointHistoryDuration =
+ this.RecoveryPoints.HasValue
+ ? this.RecoveryPoints.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryPoints,
+ };
+
+ ushort replicationFrequencyInSeconds =
+ PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds);
+ if (string.IsNullOrEmpty(this.ReplicationFrequencyInSeconds))
+ {
+ hyperVReplicaAzureProtectionProfileInput.ReplicationInterval
+ = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ReplicationFrequencyInSeconds;
+ }
+ else
+ {
+ hyperVReplicaAzureProtectionProfileInput.ReplicationInterval = replicationFrequencyInSeconds;
+ }
+
+ var storageAccount = new CustomerStorageAccount();
+ storageAccount.SubscriptionId = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryAzureSubscription;
+ if (string.IsNullOrEmpty(this.RecoveryAzureStorageAccount))
+ {
+ storageAccount.StorageAccountName
+ = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryAzureStorageAccountName;
+ }
+ else
+ {
+ storageAccount.StorageAccountName = this.RecoveryAzureStorageAccount;
+ }
+
+ hyperVReplicaAzureProtectionProfileInput.StorageAccounts = new System.Collections.Generic.List();
+ hyperVReplicaAzureProtectionProfileInput.StorageAccounts.Add(storageAccount);
+
+ UpdateProtectionProfileInput updateProtectionProfileInput =
+ new UpdateProtectionProfileInput(
+ DataContractUtils.Serialize(hyperVReplicaAzureProtectionProfileInput));
+
+ this.jobResponse = RecoveryServicesClient.UpdateAzureSiteRecoveryProtectionProfile(
+ updateProtectionProfileInput,
+ this.ProtectionProfile.ID);
+
+ this.WriteJob(this.jobResponse.Job);
+ }
+
+ ///
+ /// Updates an E2E Protection Profile
+ ///
+ private void EnterpriseToEnterpriseUpdate()
+ {
+ if (string.Compare(this.ProtectionProfile.ReplicationProvider, Constants.HyperVReplica, StringComparison.OrdinalIgnoreCase) != 0)
+ {
+ throw new InvalidOperationException(
+ string.Format(
+ Properties.Resources.IncorrectReplicationProvider,
+ this.ProtectionProfile.ReplicationProvider));
+ }
+
+ string replicationMethod = null;
+ if (string.IsNullOrEmpty(this.ReplicationMethod))
+ {
+ replicationMethod
+ = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod;
+ }
+ else
+ {
+ replicationMethod = this.ReplicationMethod;
+ }
+
+ string authentication = null;
+ if (string.IsNullOrEmpty(this.Authentication))
+ {
+ authentication
+ = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication;
+ }
+ else
+ {
+ authentication = this.Authentication;
+ }
+
+ HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput
+ = new HyperVReplicaProtectionProfileInput()
+ {
+ ApplicationConsistentSnapshotFrequencyInHours =
+ this.ApplicationConsistentSnapshotFrequencyInHours.HasValue
+ ? this.ApplicationConsistentSnapshotFrequencyInHours.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours,
+ OnlineReplicationStartTime =
+ this.ReplicationStartTime.HasValue
+ ? this.ReplicationStartTime.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime,
+ RecoveryPoints =
+ this.RecoveryPoints.HasValue
+ ? this.RecoveryPoints.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints,
+ CompressionEnabled =
+ this.CompressionEnabled.HasValue
+ ? (bool)this.CompressionEnabled.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled,
+ OnlineReplicationMethod =
+ (string.Compare(replicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false,
+ ReplicationPort =
+ this.ReplicationPort.HasValue
+ ? this.ReplicationPort.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort,
+ AllowReplicaDeletion =
+ this.AllowReplicaDeletion.HasValue
+ ? (bool)this.AllowReplicaDeletion.GetValueOrDefault()
+ : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion,
+ AllowedAuthenticationType = (ushort)((string.Compare(authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2),
+ };
+
+ ushort replicationFrequencyInSeconds =
+ PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds);
+ if (string.IsNullOrEmpty(this.ReplicationFrequencyInSeconds))
+ {
+ hyperVReplicaProtectionProfileInput.ReplicationFrequencyInSeconds
+ = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds;
+ }
+ else
+ {
+ hyperVReplicaProtectionProfileInput.ReplicationFrequencyInSeconds = replicationFrequencyInSeconds;
+ }
+
+ UpdateProtectionProfileInput updateProtectionProfileInput =
+ new UpdateProtectionProfileInput(
+ DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput));
+
+ this.jobResponse = RecoveryServicesClient.UpdateAzureSiteRecoveryProtectionProfile(
+ updateProtectionProfileInput,
+ this.ProtectionProfile.ID);
+
+ this.WriteJob(this.jobResponse.Job);
+ }
+
+ ///
+ /// Writes Job
+ ///
+ /// Job object
+ private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job)
+ {
+ this.WriteObject(new ASRJob(job));
+ }
+ }
+}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs
index 3da012586dc9..b7af255ca78a 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs
@@ -13,6 +13,7 @@
// ----------------------------------------------------------------------------------
using System;
+using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
@@ -45,28 +46,43 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string Name { get; set; }
+ public string RecoveryAzureVMName { get; set; }
///
/// Gets or sets Recovery Azure VM size
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string Size { get; set; }
+ public string RecoveryAzureVMSize { get; set; }
+
+ ///
+ /// Gets or sets Recovery Azure Network Id
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryAzureNetworkId { get; set; }
///
/// Gets or sets Selected Primary Network interface card Id
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string PrimaryNic { get; set; }
+ public string PrimaryNicId { get; set; }
///
- /// Gets or sets Recovery Azure Network Id
+ /// Gets or sets recovery VM subnet name
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string RecoveryVMSubnetName { get; set; }
+
+ ///
+ /// Gets or sets recovery NIC static IP address
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string RecoveryNetworkId { get; set; }
+ public string RecoveryNicIPAddress { get; set; }
+
#endregion Parameters
///
@@ -75,28 +91,28 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase
public override void ExecuteCmdlet()
{
// Check for at least one option
- if (string.IsNullOrEmpty(this.Name) &&
- string.IsNullOrEmpty(this.Size) &&
- string.IsNullOrEmpty(this.PrimaryNic) &&
- string.IsNullOrEmpty(this.RecoveryNetworkId))
+ if (string.IsNullOrEmpty(this.RecoveryAzureVMName) &&
+ string.IsNullOrEmpty(this.RecoveryAzureVMSize) &&
+ string.IsNullOrEmpty(this.PrimaryNicId) &&
+ (string.IsNullOrEmpty(this.RecoveryAzureNetworkId) ||
+ string.IsNullOrEmpty(this.RecoveryVMSubnetName) ||
+ string.IsNullOrEmpty(this.RecoveryNicIPAddress)))
{
this.WriteWarning(Properties.Resources.ArgumentsMissingForUpdateVmProperties.ToString());
return;
}
- // Both primary & recovery inputs should be present
- if (string.IsNullOrEmpty(this.PrimaryNic) ^
- string.IsNullOrEmpty(this.RecoveryNetworkId))
- {
- this.WriteWarning(Properties.Resources.NetworkArgumentsMissingForUpdateVmProperties.ToString());
- return;
- }
+ VMProperties updateVmPropertiesInput = new VMProperties();
+ updateVmPropertiesInput.RecoveryAzureVMName = this.RecoveryAzureVMName;
+ updateVmPropertiesInput.RecoveryAzureVMSize = this.RecoveryAzureVMSize;
+ updateVmPropertiesInput.SelectedRecoveryAzureNetworkId = this.RecoveryAzureNetworkId;
- UpdateVmPropertiesInput updateVmPropertiesInput = new UpdateVmPropertiesInput();
- updateVmPropertiesInput.RecoveryAzureVmGivenName = this.Name;
- updateVmPropertiesInput.RecoveryAzureVmSize = this.Size;
- updateVmPropertiesInput.SelectedPrimaryNicId = this.PrimaryNic;
- updateVmPropertiesInput.RecoveryAzureNetworkId = this.RecoveryNetworkId;
+ updateVmPropertiesInput.VMNics = new List();
+ VMNicDetails vmnicDetails = new VMNicDetails();
+ vmnicDetails.NicId = this.PrimaryNicId;
+ vmnicDetails.RecoveryVMSubnetName = this.RecoveryVMSubnetName;
+ vmnicDetails.ReplicaNicStaticIPAddress = this.RecoveryNicIPAddress;
+ updateVmPropertiesInput.VMNics.Add(vmnicDetails);
this.jobResponse = RecoveryServicesClient.UpdateVmProperties(
this.VirtualMachine.ProtectionContainerId,
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs
index 0cd19fa9d1fc..ee50b2900b24 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs
@@ -68,6 +68,20 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : RecoveryServicesCmdletBa
[ValidateNotNullOrEmpty]
public ASRProtectionEntity ProtectionEntity { get; set; }
+ ///
+ /// Gets or sets Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string EncryptionKeyFile { get; set; }
+
+ ///
+ /// Gets or sets Secondary Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryEncryptionKeyFile { get; set; }
+
///
/// Gets or sets Failover direction for the recovery plan.
///
@@ -113,7 +127,7 @@ public override void ExecuteCmdlet()
this.StartRpPlannedFailover();
break;
case ASRParameterSets.ByPEObject:
- this.ProtectionEntityId = this.ProtectionEntity.ID;
+ this.ProtectionEntityId = this.ProtectionEntity.ID;
this.ProtectionContainerId = this.ProtectionEntity.ProtectionContainerId;
this.StartPEPlannedFailover();
break;
@@ -154,6 +168,17 @@ private void StartPEPlannedFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
else
@@ -209,6 +234,17 @@ private void StartRpPlannedFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
else
@@ -224,7 +260,7 @@ private void StartRpPlannedFailover()
request.FailoverDirection = this.Direction;
this.jobResponse = RecoveryServicesClient.StartAzureSiteRecoveryPlannedFailover(
- this.RPId,
+ this.RPId,
request);
this.WriteJob(this.jobResponse.Job);
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs
index 1b1f3f55ec49..696368e4a8cb 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs
@@ -82,16 +82,6 @@ public override void ExecuteCmdlet()
}
}
- ///
- /// Handles interrupts.
- ///
- protected override void StopProcessing()
- {
- // Ctrl + C and etc
- base.StopProcessing();
- this.StopProcessingFlag = true;
- }
-
///
/// Associates protection profile with one enterprise based and an Azure protection container
///
@@ -155,6 +145,10 @@ private void EnterpriseToEnterpriseAssociation()
if (string.Compare(
this.ProtectionProfile.ReplicationProvider,
Constants.HyperVReplica,
+ StringComparison.OrdinalIgnoreCase) != 0 &&
+ string.Compare(
+ this.ProtectionProfile.ReplicationProvider,
+ Constants.San,
StringComparison.OrdinalIgnoreCase) != 0)
{
throw new InvalidOperationException(
@@ -163,26 +157,55 @@ private void EnterpriseToEnterpriseAssociation()
this.ProtectionProfile.ReplicationProvider));
}
- HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput
- = new HyperVReplicaProtectionProfileInput()
+ CreateProtectionProfileInput createProtectionProfileInput = null;
+
+ if (string.Compare(
+ this.ProtectionProfile.ReplicationProvider,
+ Constants.HyperVReplica,
+ StringComparison.OrdinalIgnoreCase) == 0)
+ {
+ HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput
+ = new HyperVReplicaProtectionProfileInput()
+ {
+ ApplicationConsistentSnapshotFrequencyInHours = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours,
+ ReplicationFrequencyInSeconds = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds,
+ OnlineReplicationStartTime = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime,
+ CompressionEnabled = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled,
+ OnlineReplicationMethod = (string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false,
+ RecoveryPoints = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints,
+ ReplicationPort = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort,
+ AllowReplicaDeletion = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion,
+ AllowedAuthenticationType = (ushort)((string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2),
+ };
+
+ createProtectionProfileInput =
+ new CreateProtectionProfileInput(
+ //// Name of the protection profile as the name of the protection container if not given
+ string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name,
+ this.ProtectionProfile.ReplicationProvider,
+ DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput));
+ }
+ else if (string.Compare(
+ this.ProtectionProfile.ReplicationProvider,
+ Constants.San,
+ StringComparison.OrdinalIgnoreCase) == 0)
+ {
+ SanProtectionProfileInput sanProtectionProfileInput
+ = new SanProtectionProfileInput()
{
- ApplicationConsistentSnapshotFrequencyInHours = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours,
- ReplicationFrequencyInSeconds = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds,
- OnlineReplicationStartTime = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime,
- CompressionEnabled = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled,
- OnlineReplicationMethod = (string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false,
- RecoveryPoints = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints,
- ReplicationPort = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort,
- AllowReplicaDeletion = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion,
- AllowedAuthenticationType = (ushort)((string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2),
+ CloudId = this.ProtectionProfile.SanProviderSettingsObject.CloudId,
+ RemoteCloudId = this.ProtectionProfile.SanProviderSettingsObject.RemoteCloudId,
+ ArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.ArrayUniqueId,
+ RemoteArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.RemoteArrayUniqueId
};
- CreateProtectionProfileInput createProtectionProfileInput =
- new CreateProtectionProfileInput(
+ createProtectionProfileInput =
+ new CreateProtectionProfileInput(
//// Name of the protection profile as the name of the protection container if not given
- string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name,
- this.ProtectionProfile.ReplicationProvider,
- DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput));
+ string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name,
+ this.ProtectionProfile.ReplicationProvider,
+ DataContractUtils.Serialize(sanProtectionProfileInput));
+ }
ProtectionProfileAssociationInput protectionProfileAssociationInput =
new ProtectionProfileAssociationInput(
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs
index e7ed747dae83..936ebed133b7 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs
@@ -15,6 +15,7 @@
using System;
using System.Management.Automation;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
+using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
namespace Microsoft.Azure.Commands.RecoveryServices
@@ -84,14 +85,42 @@ public override void ExecuteCmdlet()
break;
}
+ CreateProtectionProfileInput createProtectionProfileInput = null;
+ if (string.Compare(
+ this.ProtectionProfile.ReplicationProvider,
+ Constants.San,
+ StringComparison.OrdinalIgnoreCase) == 0)
+ {
+ SanProtectionProfileInput sanProtectionProfileInput
+ = new SanProtectionProfileInput()
+ {
+ CloudId = this.ProtectionProfile.SanProviderSettingsObject.CloudId,
+ RemoteCloudId = this.ProtectionProfile.SanProviderSettingsObject.RemoteCloudId,
+ ArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.ArrayUniqueId,
+ RemoteArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.RemoteArrayUniqueId
+ };
+
+ createProtectionProfileInput =
+ new CreateProtectionProfileInput(
+ //// Name of the protection profile as the name of the protection container if not given
+ string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name,
+ this.ProtectionProfile.ReplicationProvider,
+ DataContractUtils.Serialize(sanProtectionProfileInput));
+ }
+
ProtectionProfileAssociationInput protectionProfileAssociationInput =
new ProtectionProfileAssociationInput(
this.PrimaryProtectionContainer.ID,
recoveryContainerId);
+ CreateAndAssociateProtectionProfileInput createAndAssociateProtectionProfileInput =
+ new CreateAndAssociateProtectionProfileInput(
+ createProtectionProfileInput,
+ protectionProfileAssociationInput);
+
this.jobResponse = RecoveryServicesClient.StartDeleteAndDissociateAzureSiteRecoveryProtectionProfileJob(
this.ProtectionProfile.ID,
- protectionProfileAssociationInput);
+ createAndAssociateProtectionProfileInput);
this.WriteJob(this.jobResponse.Job);
}
@@ -101,16 +130,6 @@ public override void ExecuteCmdlet()
}
}
- ///
- /// Handles interrupts.
- ///
- protected override void StopProcessing()
- {
- // Ctrl + C and etc
- base.StopProcessing();
- this.StopProcessingFlag = true;
- }
-
///
/// Writes Job
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs
index 240e23931fff..f4f81a1d930b 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs
@@ -145,6 +145,21 @@ public class StartAzureSiteRecoveryTestFailoverJob : RecoveryServicesCmdletBase
[Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithVMNetworkID, Mandatory = true)]
[Parameter(ParameterSetName = ASRParameterSets.ByRPIdWithVMNetworkID, Mandatory = true)]
public string VmNetworkId { get; set; }
+
+ ///
+ /// Gets or sets Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string EncryptionKeyFile { get; set; }
+
+ ///
+ /// Gets or sets Secondary Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryEncryptionKeyFile { get; set; }
+
#endregion Parameters
///
@@ -288,6 +303,17 @@ private void StartRpTestFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
}
@@ -337,6 +363,17 @@ private void StartPETestFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs
index e018357be807..5f27aecd385b 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs
@@ -133,6 +133,20 @@ public bool PerformSourceSiteOperations
}
}
+ ///
+ /// Gets or sets Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string EncryptionKeyFile { get; set; }
+
+ ///
+ /// Gets or sets Secondary Encryption Key File
+ ///
+ [Parameter]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryEncryptionKeyFile { get; set; }
+
///
/// Gets or sets switch parameter. This is required to PerformSourceSideActions.
///
@@ -219,6 +233,17 @@ private void StartPEUnplannedFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
}
@@ -266,6 +291,17 @@ private void StartRpUnPlannedFailover()
{
var blob = new AzureFailoverInput();
blob.VaultLocation = this.GetCurrentValutLocation();
+
+ if (!string.IsNullOrEmpty(this.EncryptionKeyFile))
+ {
+ blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile);
+ }
+
+ if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile))
+ {
+ blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile);
+ }
+
request.ReplicationProviderSettings = DataContractUtils.Serialize(blob);
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs
index e04af1730f16..c56a9fe2a432 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs
@@ -85,16 +85,6 @@ public override void ExecuteCmdlet()
}
}
- ///
- /// Handles interrupts.
- ///
- protected override void StopProcessing()
- {
- // Ctrl + C and etc
- base.StopProcessing();
- this.StopProcessingFlag = true;
- }
-
///
/// Syncs the owner information.
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs
index a2ff37c8ba7e..eb1b9e2d38bb 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs
@@ -140,6 +140,57 @@ public static X509Certificate2 NewX509Certificate2(byte[] rawData, string passwo
}
}
+ ///
+ /// Method to get the Certificate's base 64 encoded string
+ ///
+ /// Certificate File Name
+ /// Base 64 encoded string of the certificate
+ public static string GetCertInBase64EncodedForm(string certFileName)
+ {
+ FileStream fileStream = null;
+ byte[] data = null;
+ string certInBase64EncodedForm = null;
+
+ try
+ {
+ fileStream = new FileStream(certFileName, FileMode.Open, FileAccess.Read);
+
+ // If the file size is more than 1MB, fail the call - this is just to avoid Dos Attacks
+ if (fileStream.Length > 1048576)
+ {
+ throw new Exception("The Certficate size exceeds 1MB. Please provide a file whose size is utmost 1 MB");
+ }
+
+ int size = (int)fileStream.Length;
+ data = new byte[size];
+ size = fileStream.Read(data, 0, size);
+
+ // Check if the file is a valid certificate before sending it to service
+ X509Certificate2 x509 = new X509Certificate2();
+ x509.Import(data);
+ if (string.IsNullOrEmpty(x509.Thumbprint))
+ {
+ throw new Exception("The thumbprint of Certificate is null or empty");
+ }
+
+ certInBase64EncodedForm = Convert.ToBase64String(data);
+ }
+ catch (Exception e)
+ {
+ certInBase64EncodedForm = null;
+ throw new ArgumentException(e.Message, certFileName, e);
+ }
+ finally
+ {
+ if (null != fileStream)
+ {
+ fileStream.Close();
+ }
+ }
+
+ return certInBase64EncodedForm;
+ }
+
///
/// Generates friendly name
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs
index e85deac21183..044f4a44ffcd 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs
@@ -733,6 +733,37 @@ public class HyperVReplicaProtectionProfileInput : HyperVReplicaSP1ProtectionPro
public ushort ReplicationFrequencyInSeconds { get; set; }
}
+ ///
+ /// San specific protection profile Input.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ public class SanProtectionProfileInput
+ {
+ ///
+ /// Gets or sets the primary cloud getting paired.
+ ///
+ [DataMember]
+ public string CloudId { get; set; }
+
+ ///
+ /// Gets or sets the recovery cloud getting paired.
+ ///
+ [DataMember]
+ public string RemoteCloudId { get; set; }
+
+ ///
+ /// Gets or sets the primary array unique Id getting paired.
+ ///
+ [DataMember]
+ public string ArrayUniqueId { get; set; }
+
+ ///
+ /// Gets or sets the recovery array unique Id getting paired.
+ ///
+ [DataMember]
+ public string RemoteArrayUniqueId { get; set; }
+ }
+
///
/// Hyper-V Replica Azure specific protection profile details.
///
@@ -861,6 +892,57 @@ public class HyperVReplicaProtectionProfileDetails : HyperVReplicaSP1ProtectionP
public ushort ReplicationFrequencyInSeconds { get; set; }
}
+ ///
+ /// Azure Site Recovery Protection Profile SanProviderSettings.
+ ///
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related objects together.")]
+ public class SanProviderSettings
+ {
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public SanProviderSettings()
+ {
+ }
+
+ #region Properties
+
+ ///
+ /// Gets or sets the primary cloud getting paired.
+ ///
+ public string CloudId { get; set; }
+
+ ///
+ /// Gets or sets the recovery cloud getting paired.
+ ///
+ public string RemoteCloudId { get; set; }
+
+ ///
+ /// Gets or sets the primary array unique Id getting paired.
+ ///
+ public string ArrayUniqueId { get; set; }
+
+ ///
+ /// Gets or sets the recovery array unique Id getting paired.
+ ///
+ public string RemoteArrayUniqueId { get; set; }
+
+ ///
+ /// Gets or sets Association Details.
+ ///
+ public List AssociationDetail { get; set; }
+
+ ///
+ /// Gets or sets a value indicating whether profile can be dissociated or not.
+ ///
+ public bool CanDissociate { get; set; }
+
+ #endregion
+ }
+
///
/// Azure Site Recovery Protection Profile HyperVReplicaProviderSettings.
///
@@ -1124,6 +1206,82 @@ public class ASREnableProtectionInput
public string ReplicationProviderInput { get; set; }
}
+ ///
+ /// San specific enable replication group protection input as part of
+ /// EnableReplicationGroupProtection REST API.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related classes together.")]
+ public class SanEnableProtectionInput
+ {
+ ///
+ /// Gets or sets the fabric that contains the replication group.
+ ///
+ [DataMember(Order = 1)]
+ public string FabricId { get; set; }
+
+ ///
+ /// Gets or sets the cloud that contains the replication group.
+ ///
+ [DataMember(Order = 2)]
+ public string CloudId { get; set; }
+
+ ///
+ /// Gets or sets the fabric's replication group Id.
+ ///
+ [DataMember(Order = 3)]
+ public string FabricReplicationGroupId { get; set; }
+
+ ///
+ /// Gets or sets the replication type (sync or async).
+ ///
+ [DataMember(Order = 4)]
+ public string ReplicationType { get; set; }
+
+ ///
+ /// Gets or sets the RPO to use in conjunction with the replication type. Valid inputs are:
+ /// ReplicationType = Sync -> RPO value should be set to 0.
+ /// ReplicationType = Async
+ /// - RPO value left at 0 -> Array's default RPO will get used.
+ /// - RPO value non-zero -> Should be one of the array's supported RPO values.
+ ///
+ [DataMember(Order = 5)]
+ public int RecoveryPointObjective { get; set; }
+
+ ///
+ /// Gets or sets the remote array to be used for protection.
+ ///
+ [DataMember(Order = 6)]
+ public string RemoteArrayId { get; set; }
+ }
+
+ ///
+ /// San specific disable replication group protection input as part of
+ /// DisableReplicationGroupProtection REST API.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related classes together.")]
+ public class SanDisableProtectionInput
+ {
+ ///
+ /// Gets or sets a value indicating whether LUNs needs to be deleted.
+ ///
+ [DataMember(Order = 1)]
+ public bool DeleteReplicaLuns { get; set; }
+
+ ///
+ /// Gets or sets the cloud Id from which LUNs should be deleted.
+ ///
+ [DataMember(Order = 2)]
+ public string TargetCloudIdForLunDeletion { get; set; }
+ }
+
///
/// Disk details for E2A provider.
///
@@ -1164,6 +1322,64 @@ public class AzureVmDiskDetails
[DataMember]
public ulong MaxSizeMB { get; set; }
}
+
+ ///
+ /// VM properties.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related classes together.")]
+ public class VMProps
+ {
+ ///
+ /// Gets or sets Recovery Azure given name.
+ ///
+ [DataMember]
+ public string RecoveryAzureVMName { get; set; }
+
+ ///
+ /// Gets or sets the Recovery Azure VM size.
+ ///
+ [DataMember]
+ public string RecoveryAzureVMSize { get; set; }
+
+ ///
+ /// Gets or sets the selected recovery azure network Id.
+ ///
+ [DataMember]
+ public string SelectedRecoveryAzureNetworkId { get; set; }
+
+ ///
+ /// Gets or sets the list of VM NIC details.
+ ///
+ [DataMember]
+ public List VMNics { get; set; }
+ }
+
+ ///
+ /// Replication provider specific settings.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related classes together.")]
+ public class ReplicationProviderSpecificSettings
+ {
+ ///
+ /// Gets or sets Azure VM Disk details.
+ ///
+ [DataMember]
+ public AzureVmDiskDetails AzureVMDiskDetails { get; set; }
+
+ ///
+ /// Gets or sets VM properties.
+ ///
+ [DataMember]
+ public VMProps VMProperties { get; set; }
+ }
}
namespace Microsoft.Azure.Portal.HybridServicesCore
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs
index 989e7863aa3e..ab7f2f7d5c02 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs
@@ -15,7 +15,10 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
+using System.IO;
using System.Runtime.Serialization;
+using System.Xml;
+using System.Xml.Serialization;
using Microsoft.Azure.Common.Authentication;
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
using Microsoft.WindowsAzure.Management.RecoveryServices.Models;
@@ -152,6 +155,11 @@ public class Constants
///
public const string HyperVReplicaAzure = "HyperVReplicaAzure";
+ ///
+ /// Represents San string constant.
+ ///
+ public const string San = "San";
+
///
/// Represents HyperVReplica string constant.
///
@@ -241,6 +249,16 @@ public class Constants
/// Acceptable values of Replication Frequency in seconds (as per portal).
///
public const string NineHundred = "900";
+
+ ///
+ /// Replication type - async.
+ ///
+ public const string Sync = "Sync";
+
+ ///
+ /// Replication type - async.
+ ///
+ public const string Async = "Async";
}
///
@@ -525,6 +543,11 @@ public ASRProtectionProfile(ProtectionProfile profile)
this.HyperVReplicaProviderSettingsObject = new HyperVReplicaProviderSettings();
this.HyperVReplicaProviderSettingsObject.AssociationDetail = new List();
}
+ else if (profile.ReplicationProvider == Constants.San)
+ {
+ this.SanProviderSettingsObject = new SanProviderSettings();
+ this.SanProviderSettingsObject.AssociationDetail = new List();
+ }
foreach (var profileAssosicationDetail in profile.AssociationDetail)
{
@@ -543,6 +566,10 @@ public ASRProtectionProfile(ProtectionProfile profile)
{
this.HyperVReplicaProviderSettingsObject.AssociationDetail.Add(asrProfileDetail);
}
+ else if (profile.ReplicationProvider == Constants.San)
+ {
+ this.SanProviderSettingsObject.AssociationDetail.Add(asrProfileDetail);
+ }
}
if (profile.ReplicationProvider == Constants.HyperVReplicaAzure)
@@ -565,6 +592,7 @@ public ASRProtectionProfile(ProtectionProfile profile)
= details.RecoveryPointHistoryDuration;
this.HyperVReplicaAzureProviderSettingsObject.CanDissociate = profile.CanDissociate;
+ this.HyperVReplicaAzureProviderSettingsObject.EncryptStoredData = details.EncryptionEnabled;
}
else if (profile.ReplicationProvider == Constants.HyperVReplica)
{
@@ -589,6 +617,26 @@ public ASRProtectionProfile(ProtectionProfile profile)
this.HyperVReplicaProviderSettingsObject.ReplicationStartTime = details.OnlineReplicationStartTime;
this.HyperVReplicaProviderSettingsObject.CanDissociate = profile.CanDissociate;
}
+ else if (profile.ReplicationProvider == Constants.San)
+ {
+ // San does not have a protection profile associated with it for now. So ReplicationProviderSetting might be empty.
+ // If we are unable to deserialze, ignore it for now.
+ try
+ {
+ var details = DataContractUtils.Deserialize(
+ profile.ReplicationProviderSetting);
+ this.SanProviderSettingsObject.CloudId = details.CloudId;
+ this.SanProviderSettingsObject.RemoteCloudId = details.RemoteCloudId;
+ this.SanProviderSettingsObject.ArrayUniqueId = details.ArrayUniqueId;
+ this.SanProviderSettingsObject.RemoteArrayUniqueId = details.RemoteArrayUniqueId;
+ }
+ catch
+ {
+ // ignore.
+ }
+
+ this.SanProviderSettingsObject.CanDissociate = profile.CanDissociate;
+ }
this.ID = profile.ID;
this.Name = profile.Name;
@@ -607,7 +655,7 @@ public ASRProtectionProfile(ProtectionProfile profile)
public string ID { get; set; }
///
- /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure)
+ /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure, San)
///
public string ReplicationProvider { get; set; }
@@ -621,6 +669,11 @@ public ASRProtectionProfile(ProtectionProfile profile)
///
public HyperVReplicaAzureProviderSettings HyperVReplicaAzureProviderSettingsObject { get; set; }
+ ///
+ /// Gets or sets SanProviderSettings
+ ///
+ public SanProviderSettings SanProviderSettingsObject { get; set; }
+
#endregion Properties
}
@@ -861,14 +914,69 @@ public ASRProtectionEntity(ProtectionEntity pe)
if (!string.IsNullOrWhiteSpace(pe.ReplicationProviderSettings))
{
- AzureVmDiskDetails diskDetails;
- DataContractUtils.Deserialize(
- pe.ReplicationProviderSettings, out diskDetails);
-
- this.Disks = diskDetails.Disks;
- this.OSDiskId = diskDetails.VHDId;
- this.OSDiskName = diskDetails.OsDisk;
- this.OS = diskDetails.OsType;
+ if (pe.ReplicationProvider == Constants.HyperVReplicaAzure)
+ {
+ ReplicationProviderSpecificSettings providerDetails;
+ DataContractUtils.Deserialize(
+ pe.ReplicationProviderSettings, out providerDetails);
+
+ this.RecoveryAzureVMName = providerDetails.VMProperties.RecoveryAzureVMName;
+ this.RecoveryAzureVMSize = providerDetails.VMProperties.RecoveryAzureVMSize;
+ this.SelectedRecoveryAzureNetworkId =
+ providerDetails.VMProperties.SelectedRecoveryAzureNetworkId;
+ this.VMNics = new List();
+
+ // Missing Nic details on serializing, going with the below workaround.
+ XmlDocument xmlDoc = new XmlDocument();
+ xmlDoc.LoadXml(pe.ReplicationProviderSettings);
+ XmlNodeList parentNode = xmlDoc.GetElementsByTagName("VMNicDetails");
+ foreach (XmlNode childrenNode in parentNode)
+ {
+ VMNic vmnicDetails = new VMNic();
+ foreach (XmlNode childNode in childrenNode.ChildNodes)
+ {
+ switch (childNode.Name)
+ {
+ case "NicId":
+ vmnicDetails.NicId = childNode.InnerText;
+ break;
+ case "VMSubnetName":
+ vmnicDetails.VMSubnetName = childNode.InnerText;
+ break;
+ case "VMNetworkName":
+ vmnicDetails.VMNetworkName = childNode.InnerText;
+ break;
+ case "RecoveryVMNetworkId":
+ vmnicDetails.RecoveryVMNetworkId = childNode.InnerText;
+ break;
+ case "RecoveryVMSubnetName":
+ vmnicDetails.RecoveryVMSubnetName = childNode.InnerText;
+ break;
+ case "ReplicaNicStaticIPAddress":
+ vmnicDetails.RecoveryNicStaticIPAddress = childNode.InnerText;
+ break;
+ }
+ }
+
+ this.VMNics.Add(vmnicDetails);
+ }
+
+ this.Disks = providerDetails.AzureVMDiskDetails.Disks;
+ this.OSDiskId = providerDetails.AzureVMDiskDetails.VHDId;
+ this.OSDiskName = providerDetails.AzureVMDiskDetails.OsDisk;
+ this.OS = providerDetails.AzureVMDiskDetails.OsType;
+ }
+ else
+ {
+ AzureVmDiskDetails diskDetails;
+ DataContractUtils.Deserialize(
+ pe.ReplicationProviderSettings, out diskDetails);
+
+ this.Disks = diskDetails.Disks;
+ this.OSDiskId = diskDetails.VHDId;
+ this.OSDiskName = diskDetails.OsDisk;
+ this.OS = diskDetails.OsType;
+ }
}
if (pe.ProtectionProfile != null &&
@@ -1033,6 +1141,26 @@ public ASRProtectionEntity(
/// Gets or sets Replication provider.
///
public string ReplicationProvider { get; set; }
+
+ ///
+ /// Gets or sets Recovery Azure VM Name
+ ///
+ public string RecoveryAzureVMName { get; set; }
+
+ ///
+ /// Gets or sets the Recovery Azure VM size.
+ ///
+ public string RecoveryAzureVMSize { get; set; }
+
+ ///
+ /// Gets or sets the selected recovery azure network Id.
+ ///
+ public string SelectedRecoveryAzureNetworkId { get; set; }
+
+ ///
+ /// Gets or sets the list of VM NIC details.
+ ///
+ public List VMNics { get; set; }
}
///
@@ -1616,4 +1744,51 @@ public class VirtualHardDisk
[DataMember]
public string Name { get; set; }
}
+
+ ///
+ /// Partial details of a NIC of a VM.
+ ///
+ [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")]
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related classes together.")]
+ public class VMNic
+ {
+ ///
+ /// Gets or sets ID of the NIC.
+ ///
+ [DataMember]
+ public string NicId { get; set; }
+
+ ///
+ /// Gets or sets Name of the VM subnet.
+ ///
+ [DataMember]
+ public string VMSubnetName { get; set; }
+
+ ///
+ /// Gets or sets Name of the VM network.
+ ///
+ [DataMember]
+ public string VMNetworkName { get; set; }
+
+ ///
+ /// Gets or sets Id of the recovery VM Network.
+ ///
+ [DataMember]
+ public string RecoveryVMNetworkId { get; set; }
+
+ ///
+ /// Gets or sets the name of the recovery VM subnet.
+ ///
+ [DataMember]
+ public string RecoveryVMSubnetName { get; set; }
+
+ ///
+ /// Gets or sets the static IP address of the replica NIC.
+ ///
+ [DataMember]
+ public string RecoveryNicStaticIPAddress { get; set; }
+ }
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs
index a61b54f9c3f8..62b561ca7e20 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs
@@ -178,5 +178,20 @@ internal static class ASRParameterSets
/// Mapping between Enterprise to Azure.
///
internal const string EnterpriseToAzure = "EnterpriseToAzure";
+
+ ///
+ /// Mapping between Enterprise to Enterprise San.
+ ///
+ internal const string EnterpriseToEnterpriseSan = "EnterpriseToEnterpriseSan";
+
+ ///
+ /// For Enable replication group parameter set.
+ ///
+ internal const string EnableReplicationGroup = "EnableReplicationGroup";
+
+ ///
+ /// For Disable replication group parameter set.
+ ///
+ internal const string DisableReplicationGroup = "DisableReplicationGroup";
}
}
\ No newline at end of file
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs
index 1501ef1b94ea..f3861ae0c57d 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs
@@ -13,6 +13,7 @@
// ----------------------------------------------------------------------------------
using System;
+using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.Serialization;
using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
@@ -48,6 +49,32 @@ public ASRStorage(AsrStorage storage)
this.FabricObjectID = storage.FabricObjectID;
this.FabricType = storage.FabricType;
this.ServerId = storage.ServerID;
+
+ if (this.Type == StorageType.Pool.ToString())
+ {
+ this.StoragePools = storage.StoragePools;
+ }
+ }
+
+ ///
+ /// Storage Type.
+ ///
+ public enum StorageType
+ {
+ ///
+ /// Unknown type.
+ ///
+ Other = 0,
+
+ ///
+ /// Classification type.
+ ///
+ Classification,
+
+ ///
+ /// Pool type.
+ ///
+ Pool,
}
#region Properties
@@ -81,6 +108,11 @@ public ASRStorage(AsrStorage storage)
///
public string FabricType { get; set; }
+ ///
+ /// Gets or sets storage pools for storage arrays.
+ ///
+ public IList StoragePools { get; set; }
+
#endregion
}
@@ -147,4 +179,68 @@ public ASRStorageMapping(StorageMapping storageMapping)
public string RecoveryStorageName { get; set; }
#endregion
}
+
+ ///
+ /// Azure Site Recovery Storage Pool Mapping.
+ ///
+ [SuppressMessage(
+ "Microsoft.StyleCop.CSharp.MaintainabilityRules",
+ "SA1402:FileMayOnlyContainASingleClass",
+ Justification = "Keeping all related objects together.")]
+ public class ASRStoragePoolMapping
+ {
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ASRStoragePoolMapping()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class with required
+ /// parameters.
+ ///
+ /// Storage mapping object
+ public ASRStoragePoolMapping(StoragePoolMapping storagePoolMapping)
+ {
+ this.PrimaryServerId = storagePoolMapping.PrimaryServerId;
+ this.PrimaryStoragePoolId = storagePoolMapping.PrimaryStoragePoolId;
+ this.PrimaryStoragePoolName = storagePoolMapping.PrimaryStoragePoolName;
+ this.RecoveryServerId = storagePoolMapping.RecoveryServerId;
+ this.RecoveryStoragePoolId = storagePoolMapping.RecoveryStoragePoolId;
+ this.RecoveryStoragePoolName = storagePoolMapping.RecoveryStoragePoolName;
+ }
+
+ #region Properties
+ ///
+ /// Gets or sets Primary server Id.
+ ///
+ public string PrimaryServerId { get; set; }
+
+ ///
+ /// Gets or sets Primary storage pool Id.
+ ///
+ public string PrimaryStoragePoolId { get; set; }
+
+ ///
+ /// Gets or sets Primary storage pool name.
+ ///
+ public string PrimaryStoragePoolName { get; set; }
+
+ ///
+ /// Gets or sets Recovery server Id.
+ ///
+ public string RecoveryServerId { get; set; }
+
+ ///
+ /// Gets or sets Recovery storage pool Id.
+ ///
+ public string RecoveryStoragePoolId { get; set; }
+
+ ///
+ /// Gets or sets Recovery storage pool name.
+ ///
+ public string RecoveryStoragePoolName { get; set; }
+ #endregion
+ }
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll
deleted file mode 100644
index ba072364e140..000000000000
Binary files a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll and /dev/null differ
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
index 023ffe5c21ff..0c6a632555b9 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
@@ -155,5 +155,32 @@ public static string GenerateCloudServiceName(string region)
region.Replace(' ', '-'),
Constants.CloudServiceNameExtensionSuffix);
}
+
+ ///
+ /// Returns the cloud id given a container id.
+ ///
+ /// Protection Container Id
+ /// Cloud Id object
+ public static void GetCloudIdFromContainerId(string protectionContainerId, out string cloudId)
+ {
+ // The first part before '_' is server id. Rest will be cloud id.
+ var index = protectionContainerId.IndexOf('_');
+
+ if (index != -1)
+ {
+ try
+ {
+ cloudId = protectionContainerId.Substring(index + 1, protectionContainerId.Length - index - 1);
+ }
+ catch
+ {
+ cloudId = null;
+ }
+ }
+ else
+ {
+ cloudId = null;
+ }
+ }
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config
index f75cd40ba9aa..86f595906893 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config
@@ -5,7 +5,7 @@
-
+
diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1
index e6411276d957..3f5993497097 100644
--- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1
+++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1
@@ -73,7 +73,8 @@ FormatsToProcess = @(
'.\Compute\Microsoft.WindowsAzure.Commands.ServiceManagement.format.ps1xml',
'.\Services\Microsoft.WindowsAzure.Commands.Profile.format.ps1xml',
'.\Networking\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.format.ps1xml',
- '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml'
+ '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml',
+ '.\RecoveryServices\Microsoft.Azure.Commands.RecoveryServices.format.ps1xml'
)
# Modules to import as nested modules of the module specified in ModuleToProcess