diff --git a/src/Common/Commands.Common.Network/Commands.Common.Network.csproj b/src/Common/Commands.Common.Network/Commands.Common.Network.csproj
index 3a68d5263fd7..dd3b2693ee03 100644
--- a/src/Common/Commands.Common.Network/Commands.Common.Network.csproj
+++ b/src/Common/Commands.Common.Network/Commands.Common.Network.csproj
@@ -66,6 +66,7 @@
+
diff --git a/src/Common/Commands.Common.Network/Common/IOperationalInsightWorkspace.cs b/src/Common/Commands.Common.Network/Common/IOperationalInsightWorkspace.cs
new file mode 100644
index 000000000000..15ca1296ed8d
--- /dev/null
+++ b/src/Common/Commands.Common.Network/Common/IOperationalInsightWorkspace.cs
@@ -0,0 +1,28 @@
+// ----------------------------------------------------------------------------------
+//
+// 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;
+
+namespace Microsoft.Azure.Management.Internal.Network.Common
+{
+ public interface IOperationalInsightWorkspace
+ {
+ string ResourceId { get; set; }
+
+ string Location { get; set; }
+
+ Guid? CustomerId { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Common/Commands.Common.Strategies/Common.Strategies.Netcore.csproj b/src/ResourceManager/Common/Commands.Common.Strategies/Common.Strategies.Netcore.csproj
index 0817c93d7c89..630799e3eb24 100644
--- a/src/ResourceManager/Common/Commands.Common.Strategies/Common.Strategies.Netcore.csproj
+++ b/src/ResourceManager/Common/Commands.Common.Strategies/Common.Strategies.Netcore.csproj
@@ -24,6 +24,6 @@
-
+
\ No newline at end of file
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
index b5478a474679..076830252101 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
@@ -92,6 +92,9 @@ public EnvironmentSetupHelper()
module = GetModuleManifest(StorageDirectory, "Azure.Storage");
LogIfNotNull($"Storage Data Plane Module path: {module}");
RMStorageDataPlaneModule = module;
+ module = GetModuleManifest(RmDirectory, "AzureRM.OperationalInsights");
+ LogIfNotNull($"Storage Data Plane Module path: {module}");
+ RMOperationalInsightsModule = module;
module = GetModuleManifest(RmDirectory, "AzureRM.Network");
LogIfNotNull($"Network Module path: {module}");
RMNetworkModule = module;
@@ -152,7 +155,9 @@ public EnvironmentSetupHelper()
public string RMInsightsModule { get; private set; }
- public string RMStorageModule { get; private set; }
+ public string RMStorageModule { get; private set; }
+
+ public string RMOperationalInsightsModule { get; private set; }
//TODO: clarify (data plane should not be under ARM folder)
public string RMStorageDataPlaneModule { get; private set; }
diff --git a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/Commands.Compute.ManagedService.Test.csproj b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/Commands.Compute.ManagedService.Test.csproj
index 06a50545b552..18cbe29905d6 100644
--- a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/Commands.Compute.ManagedService.Test.csproj
+++ b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/Commands.Compute.ManagedService.Test.csproj
@@ -67,8 +67,8 @@
..\..\..\packages\Microsoft.Azure.Management.Compute.17.0.1\lib\net452\Microsoft.Azure.Management.Compute.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.15.1.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
True
diff --git a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/packages.config b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/packages.config
index 7eea0ac3d4d7..4a61e515f13e 100644
--- a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/packages.config
+++ b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService.Test/packages.config
@@ -7,7 +7,7 @@
-
+
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj
index 3d499a7ffd68..99eb6191913c 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj
@@ -66,8 +66,8 @@
..\..\..\packages\Microsoft.Azure.Management.Compute.18.0.0\lib\net452\Microsoft.Azure.Management.Compute.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
False
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
index 507cfbb6b3a4..4a7f6aaf6454 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
@@ -8,7 +8,7 @@
-
+
diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj
index 51f30da942cb..f1c29bf3ea49 100644
--- a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj
+++ b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj
@@ -66,8 +66,8 @@
..\..\..\packages\Microsoft.Azure.Management.Dns.2.2.0-preview\lib\net452\Microsoft.Azure.Management.Dns.dll
True
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
False
diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config
index a0d7e3998bbe..3adeb271ae5b 100644
--- a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config
+++ b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config
@@ -6,7 +6,7 @@
-
+
diff --git a/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1 b/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1
index bb551fb89551..9e2f83f684f6 100644
--- a/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1
+++ b/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1
@@ -54,8 +54,7 @@ PowerShellVersion = '5.1'
RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0.11.0'; })
# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = '.\AutoMapper.dll',
- '.\Microsoft.Azure.Management.Network.dll'
+RequiredAssemblies = '.\AutoMapper.dll','.\Microsoft.Azure.Management.Network.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
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 0e47fa53da01..1c7b60298d8c 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj
+++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj
@@ -64,8 +64,11 @@
..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll
True
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+
+ ..\..\..\packages\Microsoft.Azure.Management.OperationalInsights.0.18.0-preview\lib\net45\Microsoft.Azure.Management.OperationalInsights.dll
..\..\..\packages\Microsoft.Azure.Management.ResourceManager.1.6.0-preview\lib\net452\Microsoft.Azure.Management.ResourceManager.dll
@@ -685,6 +688,10 @@
{98cfd96b-a6bc-4f15-ae2c-603fc2b58981}
Commands.Network
+
+ {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}
+ Commands.OperationalInsights
+
diff --git a/src/ResourceManager/Network/Commands.Network.Test/NetworkResourcesController.cs b/src/ResourceManager/Network/Commands.Network.Test/NetworkResourcesController.cs
index 1f86f703a986..44a7c230b25a 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/NetworkResourcesController.cs
+++ b/src/ResourceManager/Network/Commands.Network.Test/NetworkResourcesController.cs
@@ -21,6 +21,7 @@
using Microsoft.Azure.Management.Redis;
using Microsoft.Azure.Management.Resources;
using Microsoft.Azure.Management.Storage;
+using Microsoft.Azure.Management.OperationalInsights;
using Microsoft.Azure.Subscriptions;
using Microsoft.Azure.Test;
using Microsoft.Azure.Test.HttpRecorder;
@@ -52,6 +53,8 @@ public sealed class NetworkResourcesController
public StorageManagementClient StorageManagementClient { get; private set; }
+ public OperationalInsightsManagementClient OperationalInsightsManagementClient { get; private set; }
+
public InsightsManagementClient InsightsManagementClient { get; private set; }
public RedisManagementClient RedisManagementClient { get; private set; }
@@ -127,6 +130,7 @@ public void RunPsTestWorkflow(
helper.GetRMModulePath("AzureRM.RedisCache.psd1"),
helper.GetRMModulePath("AzureRM.Network.psd1"),
helper.GetRMModulePath("AzureRM.Compute.psd1"),
+ helper.GetRMModulePath("AzureRM.OperationalInsights.psd1"),
helper.RMStorageDataPlaneModule,
"AzureRM.Storage.ps1",
"AzureRM.Resources.ps1");
@@ -177,6 +181,7 @@ private void SetupManagementClients(RestTestFramework.MockContext context)
this.NetworkManagementClient = this.GetNetworkManagementClient(context);
this.ComputeManagementClient = this.GetComputeManagementClient(context);
this.StorageManagementClient = this.GetStorageManagementClient(context);
+ this.OperationalInsightsManagementClient = this.GetOperationalInsightsManagementClient(context);
this.AuthorizationManagementClient = this.GetAuthorizationManagementClient();
this.InsightsManagementClient = this.GetInsightsManagementClient();
this.RedisManagementClient = this.GetRedisManagementClient(context);
@@ -189,6 +194,7 @@ private void SetupManagementClients(RestTestFramework.MockContext context)
this.NetworkManagementClient,
this.ComputeManagementClient,
this.StorageManagementClient,
+ this.OperationalInsightsManagementClient,
this.AuthorizationManagementClient,
this.InsightsManagementClient,
this.RedisManagementClient);
@@ -219,6 +225,11 @@ private StorageManagementClient GetStorageManagementClient(RestTestFramework.Moc
return context.GetServiceClient(RestTestFramework.TestEnvironmentFactory.GetTestEnvironment());
}
+ private OperationalInsightsManagementClient GetOperationalInsightsManagementClient(RestTestFramework.MockContext context)
+ {
+ return context.GetServiceClient(RestTestFramework.TestEnvironmentFactory.GetTestEnvironment());
+ }
+
private GalleryClient GetGalleryClient()
{
return TestBase.GetServiceClient(this.csmTestFactory);
diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1
index af832aaf1079..a2805c6d0de1 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1
+++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1
@@ -503,24 +503,23 @@ function Test-FlowLog
# Setup
$resourceGroupName = Get-ResourceGroupName
$nwName = Get-ResourceName
- $location = "eastus"
+ #Since Traffic Analytics is not available in all Azure regions, hardcoded locations are used
+ #Once Traffic Analytics is available in all Azure regions, the below two location variables should be updated to Get-Location
+ $location = "eastus2euap"
+ $workspaceLocation = "eastus"
$resourceTypeParent = "Microsoft.Network/networkWatchers"
$nwLocation = Get-ProviderLocation $resourceTypeParent
$nwRgName = Get-ResourceGroupName
$domainNameLabel = Get-ResourceName
- $vnetName = Get-ResourceName
- $subnetName = Get-ResourceName
$nsgName = Get-ResourceName
+ $stoname = Get-ResourceName
+ $workspaceName = Get-ResourceName
try
{
# Create Resource group
New-AzureRmResourceGroup -Name $resourceGroupName -Location "$location"
- # Create the Virtual Network
- $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24
- $vnet = New-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $resourceGroupName -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet
-
# Create NetworkSecurityGroup
$nsg = New-AzureRmNetworkSecurityGroup -name $nsgName -ResourceGroupName $resourceGroupName -Location $location
@@ -534,14 +533,20 @@ function Test-FlowLog
$nw = New-AzureRmNetworkWatcher -Name $nwName -ResourceGroupName $nwRgName -Location $location
# Create storage
- $stoname = 'sto' + $resourceGroupName
+ $stoname = 'sto' + $stoname
$stotype = 'Standard_GRS'
- $containerName = 'cont' + $resourceGroupName
New-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -Name $stoname -Location $location -Type $stotype;
$sto = Get-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -Name $stoname;
- $job = Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcher $nw -TargetResourceId $getNsg.Id -EnableFlowLog $true -StorageAccountId $sto.Id -AsJob
+ # create workspace
+ $workspaceName = 'tawspace' + $workspaceName
+ $workspaceSku = 'free'
+
+ New-AzureRmOperationalInsightsWorkspace -ResourceGroupName $resourceGroupName -Name $workspaceName -Location $workspaceLocation -Sku $workspaceSku;
+ $workspace = Get-AzureRmOperationalInsightsWorkspace -Name $workspaceName -ResourceGroupName $resourceGroupName
+
+ $job = Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcher $nw -TargetResourceId $getNsg.Id -EnableFlowLog $true -StorageAccountId $sto.Id -EnableTrafficAnalytics:$true -Workspace $workspace -AsJob
$job | Wait-Job
$config = $job | Receive-Job
$job = Get-AzureRmNetworkWatcherFlowLogStatus -NetworkWatcher $nw -TargetResourceId $getNsg.Id -AsJob
@@ -554,11 +559,19 @@ function Test-FlowLog
Assert-AreEqual $config.Enabled $true
Assert-AreEqual $config.RetentionPolicy.Days 0
Assert-AreEqual $config.RetentionPolicy.Enabled $false
+ Assert-AreEqual $config.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.Enabled $true
+ Assert-AreEqual $config.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceResourceId $workspace.ResourceId
+ Assert-AreEqual $config.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceId $workspace.CustomerId.ToString()
+ Assert-AreEqual $config.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceRegion $workspace.Location
Assert-AreEqual $status.TargetResourceId $getNsg.Id
Assert-AreEqual $status.StorageId $sto.Id
Assert-AreEqual $status.Enabled $true
Assert-AreEqual $status.RetentionPolicy.Days 0
Assert-AreEqual $status.RetentionPolicy.Enabled $false
+ Assert-AreEqual $status.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.Enabled $true
+ Assert-AreEqual $status.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceResourceId $workspace.ResourceId
+ Assert-AreEqual $status.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceId $workspace.CustomerId.ToString()
+ Assert-AreEqual $status.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceRegion $workspace.Location
}
finally
{
diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestFlowLog.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestFlowLog.json
index 4ca4cde95afe..53fb16fc1f5f 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestFlowLog.json
+++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestFlowLog.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Network?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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/virtualNetworkAvailableEndpointServices\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-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 \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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/virtualNetworkAvailableEndpointServices\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\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 \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-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 \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\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\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "24460"
+ "25613"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14975"
],
"x-ms-request-id": [
- "7015fa94-0b86-4a92-b76b-b1e395b2e2f7"
+ "a36a65fd-7e91-4831-aa16-ccad106cec2e"
],
"x-ms-correlation-request-id": [
- "7015fa94-0b86-4a92-b76b-b1e395b2e2f7"
+ "a36a65fd-7e91-4831-aa16-ccad106cec2e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113542Z:7015fa94-0b86-4a92-b76b-b1e395b2e2f7"
+ "SOUTHINDIA:20180520T041013Z:a36a65fd-7e91-4831-aa16-ccad106cec2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,31 +46,31 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:35:41 GMT"
+ "Sun, 20 May 2018 04:10:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7559?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzU1OT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "28"
+ "33"
],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559\",\r\n \"name\": \"ps7559\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870\",\r\n \"name\": \"ps2870\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "165"
+ "170"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-request-id": [
- "e23f4057-e767-474d-beee-fbbe002dfbf4"
+ "0c8e183c-8192-42f6-bec7-c838e38e0e37"
],
"x-ms-correlation-request-id": [
- "e23f4057-e767-474d-beee-fbbe002dfbf4"
+ "0c8e183c-8192-42f6-bec7-c838e38e0e37"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113544Z:e23f4057-e767-474d-beee-fbbe002dfbf4"
+ "SOUTHINDIA:20180520T041020Z:0c8e183c-8192-42f6-bec7-c838e38e0e37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -103,34 +103,34 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:35:43 GMT"
+ "Sun, 20 May 2018 04:10:19 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTIyMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e29a22e-4302-4ae2-a13a-57e9d8433266"
+ "c469ddff-b635-4eec-90c7-2c7b3bffc6d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps1223' under resource group 'ps7559' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/ps5168' under resource group 'ps2870' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "150"
+ "156"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -145,13 +145,13 @@
"gateway"
],
"x-ms-request-id": [
- "e98072da-ee86-490c-9e46-46aaeea7acd6"
+ "15b95018-7298-4e35-aea8-f22d1f8c12f1"
],
"x-ms-correlation-request-id": [
- "e98072da-ee86-490c-9e46-46aaeea7acd6"
+ "15b95018-7298-4e35-aea8-f22d1f8c12f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113545Z:e98072da-ee86-490c-9e46-46aaeea7acd6"
+ "SOUTHINDIA:20180520T041021Z:15b95018-7298-4e35-aea8-f22d1f8c12f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -163,28 +163,28 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:35:45 GMT"
+ "Sun, 20 May 2018 04:10:20 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTIyMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps1223\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223\",\r\n \"etag\": \"W/\\\"5f5ef074-4867-4217-9fa9-af85538912b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a55692c9-448b-44c1-8f70-2eb857206736\",\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\": \"ps104\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223/subnets/ps104\",\r\n \"etag\": \"W/\\\"5f5ef074-4867-4217-9fa9-af85538912b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5168\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e683a5b-dee2-4214-b97a-9ac2cabc3d9c\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1089"
+ "5984"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -196,7 +196,7 @@
"no-cache"
],
"x-ms-request-id": [
- "bdf50baf-fbc4-47ec-a15e-c552d8a4bafd"
+ "303a0598-c12f-48a7-85bf-48121671e7dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -205,53 +205,53 @@
"no-cache"
],
"ETag": [
- "W/\"5f5ef074-4867-4217-9fa9-af85538912b1\""
+ "W/\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\""
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14997"
],
"x-ms-correlation-request-id": [
- "3930fa78-912a-45d7-82b3-c3e5b93cb8ef"
+ "11c2a01e-f17d-4507-aa18-5ffae00de155"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113607Z:3930fa78-912a-45d7-82b3-c3e5b93cb8ef"
+ "SOUTHINDIA:20180520T041039Z:11c2a01e-f17d-4507-aa18-5ffae00de155"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:36:06 GMT"
+ "Sun, 20 May 2018 04:10:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTIyMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d85d53f2-e51e-466c-ad90-8f28532c9505"
+ "796982b6-2d25-4eaa-b4c2-126f0e4e06c3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps1223\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223\",\r\n \"etag\": \"W/\\\"5f5ef074-4867-4217-9fa9-af85538912b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a55692c9-448b-44c1-8f70-2eb857206736\",\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\": \"ps104\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223/subnets/ps104\",\r\n \"etag\": \"W/\\\"5f5ef074-4867-4217-9fa9-af85538912b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5168\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e683a5b-dee2-4214-b97a-9ac2cabc3d9c\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1089"
+ "5984"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -263,7 +263,7 @@
"no-cache"
],
"x-ms-request-id": [
- "42511d84-9407-4f9b-9e0d-6a4d8c6f52f2"
+ "7587492b-f1e8-48ef-801f-ea8509ff02b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -272,59 +272,53 @@
"no-cache"
],
"ETag": [
- "W/\"5f5ef074-4867-4217-9fa9-af85538912b1\""
+ "W/\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\""
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14996"
],
"x-ms-correlation-request-id": [
- "20983cf1-f4f6-4d94-99ad-160ed496eb0e"
+ "2a22eaec-aa7a-43a5-b041-da060ff4b8f4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113607Z:20983cf1-f4f6-4d94-99ad-160ed496eb0e"
+ "SOUTHINDIA:20180520T041039Z:2a22eaec-aa7a-43a5-b041-da060ff4b8f4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:36:06 GMT"
+ "Sun, 20 May 2018 04:10:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTIyMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
- "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 \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"ps104\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"eastus\"\r\n}",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "473"
- ],
"x-ms-client-request-id": [
- "c768a1ff-f594-4d7c-9f4f-9ead41e175d8"
+ "80cd052c-4f5f-4122-8efd-3e4aaf9d0088"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps1223\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223\",\r\n \"etag\": \"W/\\\"82566719-d7c2-46de-a808-ce4af99069da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a55692c9-448b-44c1-8f70-2eb857206736\",\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\": \"ps104\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/virtualNetworks/ps1223/subnets/ps104\",\r\n \"etag\": \"W/\\\"82566719-d7c2-46de-a808-ce4af99069da\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5168\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e683a5b-dee2-4214-b97a-9ac2cabc3d9c\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1087"
+ "5984"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -335,14 +329,8 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "3"
- ],
"x-ms-request-id": [
- "27b8632b-ea75-4daa-a15e-c233a43ec993"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/27b8632b-ea75-4daa-a15e-c233a43ec993?api-version=2018-04-01"
+ "d555c7de-0bfc-40ba-9de4-9738b3937fa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -350,45 +338,60 @@
"Cache-Control": [
"no-cache"
],
+ "ETag": [
+ "W/\"a0345ae1-e38a-4cb4-b13a-ad86a0e36124\""
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "0919cc3e-9510-4c28-9abc-ba2ec366a805"
+ "92973ee2-3b45-43cc-b63b-be00c9e60a0f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113546Z:0919cc3e-9510-4c28-9abc-ba2ec366a805"
+ "SOUTHINDIA:20180520T041040Z:92973ee2-3b45-43cc-b63b-be00c9e60a0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:35:46 GMT"
+ "Sun, 20 May 2018 04:10:40 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/27b8632b-ea75-4daa-a15e-c233a43ec993?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjdiODYzMmItZWE3NS00ZGFhLWExNWUtYzIzM2E0M2VjOTkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNTE2OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"eastus2euap\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "116"
+ ],
+ "x-ms-client-request-id": [
+ "18437280-28e4-4f1e-b844-15d6d9ea16bc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps5168\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2e683a5b-dee2-4214-b97a-9ac2cabc3d9c\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"22992262-4958-4d94-8583-b41507176892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "30"
+ "5977"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -403,7 +406,10 @@
"10"
],
"x-ms-request-id": [
- "4ec5b008-7ddf-4fc3-a557-9c21d1236a8a"
+ "1a137399-9a6e-4493-9389-78451ece933e"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Network/locations/eastus2euap/operations/1a137399-9a6e-4493-9389-78451ece933e?api-version=2018-04-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -415,35 +421,35 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "113db663-1cf5-456e-bc86-3c07df1bf966"
+ "57ae15d0-ec84-4942-bb02-ccd385d5778a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113557Z:113db663-1cf5-456e-bc86-3c07df1bf966"
+ "SOUTHINDIA:20180520T041028Z:57ae15d0-ec84-4942-bb02-ccd385d5778a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:35:56 GMT"
+ "Sun, 20 May 2018 04:10:27 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/27b8632b-ea75-4daa-a15e-c233a43ec993?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjdiODYzMmItZWE3NS00ZGFhLWExNWUtYzIzM2E0M2VjOTkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Network/locations/eastus2euap/operations/1a137399-9a6e-4493-9389-78451ece933e?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8xYTEzNzM5OS05YTZlLTQ0OTMtOTM4OS03ODQ1MWVjZTkzM2U/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -461,7 +467,7 @@
"no-cache"
],
"x-ms-request-id": [
- "7e9f88da-9b20-4ddc-8374-29f249e0017c"
+ "e107037f-3bf4-46e6-99fc-4d439e515eed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -474,46 +480,43 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14998"
],
"x-ms-correlation-request-id": [
- "1c5114ab-76ab-44b3-97b0-1497a9ca7f58"
+ "2d99b335-017f-4df8-ac7c-ace940624ad8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113607Z:1c5114ab-76ab-44b3-97b0-1497a9ca7f58"
+ "SOUTHINDIA:20180520T041039Z:2d99b335-017f-4df8-ac7c-ace940624ad8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:36:06 GMT"
+ "Sun, 20 May 2018 04:10:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNzM3Mj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps174?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMTc0P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "9c8b7602-459d-463a-9592-0cee4bd20bf4"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "accept-language": [
- "en-US"
+ "Content-Length": [
+ "33"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/ps7372' under resource group 'ps7559' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174\",\r\n \"name\": \"ps174\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "156"
+ "168"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -524,17 +527,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-request-id": [
- "671552a6-d145-462f-96cc-1b14001fd2d3"
+ "2c2baa6e-366e-439e-9956-cb99a2c0e425"
],
"x-ms-correlation-request-id": [
- "671552a6-d145-462f-96cc-1b14001fd2d3"
+ "2c2baa6e-366e-439e-9956-cb99a2c0e425"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113607Z:671552a6-d145-462f-96cc-1b14001fd2d3"
+ "SOUTHINDIA:20180520T041054Z:2c2baa6e-366e-439e-9956-cb99a2c0e425"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -546,28 +549,34 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:06 GMT"
+ "Sun, 20 May 2018 04:10:54 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNzM3Mj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvcHMyNDUwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3853daad-a559-4c5b-9374-07ec42e807c8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps7372\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ec8af26-261b-45ff-b0b2-0823027a36d1\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkWatchers/ps2450' under resource group 'ps174' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "5979"
+ "149"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -578,63 +587,56 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "511d644f-21ab-4cba-82b4-4af68c484870"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "ETag": [
- "W/\"be117935-c564-4c8a-a9d7-81849b185be9\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "x-ms-request-id": [
+ "5d71b192-a5d7-4f43-bbe1-b692a768c3e3"
],
"x-ms-correlation-request-id": [
- "7f4787f0-c999-45b3-81b4-533866d1ef19"
+ "5d71b192-a5d7-4f43-bbe1-b692a768c3e3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113619Z:7f4787f0-c999-45b3-81b4-533866d1ef19"
+ "SOUTHINDIA:20180520T041054Z:5d71b192-a5d7-4f43-bbe1-b692a768c3e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Fri, 04 May 2018 11:36:19 GMT"
+ "Sun, 20 May 2018 04:10:54 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNzM3Mj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvcHMyNDUwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31243faf-afbf-4765-bf39-56831ccc792c"
+ "2e58b203-1802-4d2d-8c3d-d8a95657769f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps7372\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ec8af26-261b-45ff-b0b2-0823027a36d1\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps2450\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450\",\r\n \"etag\": \"W/\\\"2b342650-d19c-4a0b-a95a-d2d21f307ca0\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "5979"
+ "390"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -646,7 +648,7 @@
"no-cache"
],
"x-ms-request-id": [
- "176ef93d-6878-4b88-aaf9-fdc334235cbd"
+ "7188fefd-7a5f-444f-b769-8f5c3a648e18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -655,53 +657,59 @@
"no-cache"
],
"ETag": [
- "W/\"be117935-c564-4c8a-a9d7-81849b185be9\""
+ "W/\"2b342650-d19c-4a0b-a95a-d2d21f307ca0\""
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14993"
],
"x-ms-correlation-request-id": [
- "68787c72-65c5-456b-ac07-e8058fc51900"
+ "005b9d4a-6ca2-4e1f-9d22-cdf8ee212dd5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113619Z:68787c72-65c5-456b-ac07-e8058fc51900"
+ "SOUTHINDIA:20180520T041058Z:005b9d4a-6ca2-4e1f-9d22-cdf8ee212dd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:36:19 GMT"
+ "Sun, 20 May 2018 04:10:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNzM3Mj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvcHMyNDUwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "33"
+ ],
"x-ms-client-request-id": [
- "e1fdcaaa-1b8d-422a-b793-2fafd33809fb"
+ "6db832db-d7cf-4315-8b6b-790a8bd72248"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps7372\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ec8af26-261b-45ff-b0b2-0823027a36d1\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"be117935-c564-4c8a-a9d7-81849b185be9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"ps2450\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450\",\r\n \"etag\": \"W/\\\"2b342650-d19c-4a0b-a95a-d2d21f307ca0\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "5979"
+ "390"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -713,7 +721,10 @@
"no-cache"
],
"x-ms-request-id": [
- "3f4383d5-c52b-483b-993b-62d6ad0887fc"
+ "6ab610ff-d034-4244-bba6-d5545f01814a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Network/locations/eastus2euap/operations/6ab610ff-d034-4244-bba6-d5545f01814a?api-version=2018-04-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -721,63 +732,60 @@
"Cache-Control": [
"no-cache"
],
- "ETag": [
- "W/\"be117935-c564-4c8a-a9d7-81849b185be9\""
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "23136e4c-1714-419d-8966-be265d268934"
+ "94a8f4e2-d4f9-4ad5-8c3a-9c98cd64b22e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113619Z:23136e4c-1714-419d-8966-be265d268934"
+ "SOUTHINDIA:20180520T041057Z:94a8f4e2-d4f9-4ad5-8c3a-9c98cd64b22e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 04 May 2018 11:36:19 GMT"
+ "Sun, 20 May 2018 04:10:57 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3BzNzM3Mj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297?api-version=2016-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzOTI5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"eastus\"\r\n}",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "111"
+ "101"
],
"x-ms-client-request-id": [
- "8bf14325-0a84-4913-979b-9f2ab28fdbf7"
+ "3f3f0ba3-daa5-40a1-869a-701965cf1410"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps7372\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1ec8af26-261b-45ff-b0b2-0823027a36d1\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c473b5df-01b8-463c-83e4-8da6730b646d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "5972"
+ "0"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "text/plain; charset=utf-8"
],
"Expires": [
"-1"
@@ -786,62 +794,61 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "17"
],
"x-ms-request-id": [
- "06c533e5-958d-494f-934e-20085ccafc39"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/06c533e5-958d-494f-934e-20085ccafc39?api-version=2018-04-01"
+ "dce3c584-cdf7-4712-b114-de73c0748022"
],
"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"
+ "1199"
],
"x-ms-correlation-request-id": [
- "be47cb7a-1446-479d-ade3-97100a9e7444"
+ "f4e5cd1d-6623-4a09-96e6-4c6b3c9d241c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113609Z:be47cb7a-1446-479d-ade3-97100a9e7444"
+ "SOUTHINDIA:20180520T041102Z:f4e5cd1d-6623-4a09-96e6-4c6b3c9d241c"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Fri, 04 May 2018 11:36:08 GMT"
+ "Sun, 20 May 2018 04:11:02 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/dce3c584-cdf7-4712-b114-de73c0748022?monitor=true&api-version=2016-12-01"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/06c533e5-958d-494f-934e-20085ccafc39?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDZjNTMzZTUtOTU4ZC00OTRmLTkzNGUtMjAwODVjY2FmYzM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/dce3c584-cdf7-4712-b114-de73c0748022?monitor=true&api-version=2016-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zL2RjZTNjNTg0LWNkZjctNDcxMi1iMTE0LWRlNzNjMDc0ODAyMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297\",\r\n \"name\": \"stops9297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-20T04:11:02.4813018Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-20T04:11:02.4813018Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-20T04:11:02.402966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stops9297.blob.core.windows.net/\",\r\n \"queue\": \"https://stops9297.queue.core.windows.net/\",\r\n \"table\": \"https://stops9297.table.core.windows.net/\",\r\n \"file\": \"https://stops9297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "29"
+ "985"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -850,59 +857,61 @@
"no-cache"
],
"x-ms-request-id": [
- "cd16bf62-a9eb-4801-8aa7-fe7f0761d726"
+ "322e215d-6843-48f9-999f-2a88b857cfcc"
],
"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": [
- "14980"
+ "14999"
],
"x-ms-correlation-request-id": [
- "b4975717-bb23-4f25-9557-e5961a185ad2"
+ "c312cd48-39da-4c35-99fb-bd7bc7f245a1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113619Z:b4975717-bb23-4f25-9557-e5961a185ad2"
+ "SOUTHINDIA:20180520T041120Z:c312cd48-39da-4c35-99fb-bd7bc7f245a1"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Fri, 04 May 2018 11:36:18 GMT"
+ "Sun, 20 May 2018 04:11:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6230?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjIzMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297?api-version=2016-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzOTI5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "1c116626-5a2b-4407-ab54-e50317454694"
],
- "Content-Length": [
- "28"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230\",\r\n \"name\": \"ps6230\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297\",\r\n \"name\": \"stops9297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-20T04:11:02.4813018Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-20T04:11:02.4813018Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-20T04:11:02.402966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stops9297.blob.core.windows.net/\",\r\n \"queue\": \"https://stops9297.queue.core.windows.net/\",\r\n \"table\": \"https://stops9297.table.core.windows.net/\",\r\n \"file\": \"https://stops9297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "165"
+ "985"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -910,20 +919,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
- ],
"x-ms-request-id": [
- "830f85ba-37a3-4383-8d1b-a9ce2bd5e499"
+ "9b860d60-da30-4490-8a7d-0ccaf60b1cdd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "830f85ba-37a3-4383-8d1b-a9ce2bd5e499"
+ "d8175f6b-2ddf-4773-a7ca-46352e3a27b7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113620Z:830f85ba-37a3-4383-8d1b-a9ce2bd5e499"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20180520T041120Z:d8175f6b-2ddf-4773-a7ca-46352e3a27b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -932,34 +941,37 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:19 GMT"
+ "Sun, 20 May 2018 04:11:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjIzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL3BzMjQyMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/Microsoft.OperationalInsights/workspaces/tawspaceps3523?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy90YXdzcGFjZXBzMzUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31122d3c-75ec-40d7-9372-1fe28b305107"
+ "a57575f1-5a1b-4d74-8bda-0e1cf741fc40"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.18.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkWatchers/ps2422' under resource group 'ps6230' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/tawspaceps3523' under resource group 'ps2870' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "150"
+ "165"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -974,13 +986,13 @@
"gateway"
],
"x-ms-request-id": [
- "6105a839-b43f-456a-80f2-99b7efba79af"
+ "d95cd4c6-d75a-4013-a5f4-c6001dcdc58d"
],
"x-ms-correlation-request-id": [
- "6105a839-b43f-456a-80f2-99b7efba79af"
+ "d95cd4c6-d75a-4013-a5f4-c6001dcdc58d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113620Z:6105a839-b43f-456a-80f2-99b7efba79af"
+ "SOUTHINDIA:20180520T041121Z:d95cd4c6-d75a-4013-a5f4-c6001dcdc58d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -992,46 +1004,105 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:20 GMT"
+ "Sun, 20 May 2018 04:11:21 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjIzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL3BzMjQyMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/Microsoft.OperationalInsights/workspaces/tawspaceps3523?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy90YXdzcGFjZXBzMzUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.18.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"portalUrl\": \"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa38f78b2-f840-4628-90f8-009ec9745a16%2fresourcegroups%2fps2870%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2ftawspaceps3523\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": 0.5,\r\n \"quotaNextResetTime\": \"Sun, 20 May 2018 20:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\",\r\n \"name\": \"tawspaceps3523\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1007"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "95d9bf01-f939-44ab-b418-54bad451466d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET",
+ "ASP.NET"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "eac8507a-f8cb-4966-bbc0-4a33f6806e9d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20180520T041159Z:eac8507a-f8cb-4966-bbc0-4a33f6806e9d"
+ ],
+ "Date": [
+ "Sun, 20 May 2018 04:11:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/Microsoft.OperationalInsights/workspaces/tawspaceps3523?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy90YXdzcGFjZXBzMzUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e95c5c3b-69e0-44fc-b4ca-c843426f7408"
+ "b1a1a98b-7b8e-4a0f-974c-20df7a494cfc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.18.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2422\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422\",\r\n \"etag\": \"W/\\\"2bdfa4d4-ff7b-43fe-bd3e-93cafba974bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"portalUrl\": \"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa38f78b2-f840-4628-90f8-009ec9745a16%2fresourcegroups%2fps2870%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2ftawspaceps3523\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": 0.5,\r\n \"quotaNextResetTime\": \"Sun, 20 May 2018 20:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\",\r\n \"name\": \"tawspaceps3523\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "386"
+ "1007"
],
"Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "application/json"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
- "8376637c-db29-41f5-b091-36a4640d13de"
+ "d011707c-34d0-4e72-9c52-90672f0de524"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1039,75 +1110,73 @@
"Cache-Control": [
"no-cache"
],
- "ETag": [
- "W/\"2bdfa4d4-ff7b-43fe-bd3e-93cafba974bf\""
- ],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-IIS/8.5",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET",
+ "ASP.NET"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14988"
],
"x-ms-correlation-request-id": [
- "85d248f1-0ef5-4f2e-8fc4-56ecb5f85364"
+ "25b69a2e-8c76-4b46-9c9a-c8b02287c473"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113621Z:85d248f1-0ef5-4f2e-8fc4-56ecb5f85364"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "SOUTHINDIA:20180520T041200Z:25b69a2e-8c76-4b46-9c9a-c8b02287c473"
],
"Date": [
- "Fri, 04 May 2018 11:36:21 GMT"
+ "Sun, 20 May 2018 04:11:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjIzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL3BzMjQyMj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/Microsoft.OperationalInsights/workspaces/tawspaceps3523?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy90YXdzcGFjZXBzMzUyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "28"
+ "111"
],
"x-ms-client-request-id": [
- "51c58bed-57a5-4ed0-9e2d-b73f72e40ddd"
+ "44a42a5c-1c42-47a7-8ed4-e9d6263fbc2a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.18.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"ps2422\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422\",\r\n \"etag\": \"W/\\\"2bdfa4d4-ff7b-43fe-bd3e-93cafba974bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"portalUrl\": \"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa38f78b2-f840-4628-90f8-009ec9745a16%2fresourcegroups%2fps2870%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2ftawspaceps3523\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": 0.5,\r\n \"quotaNextResetTime\": \"Sun, 20 May 2018 20:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\",\r\n \"name\": \"tawspaceps3523\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "386"
+ "1006"
],
"Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "application/json"
],
"Pragma": [
"no-cache"
],
"x-ms-request-id": [
- "5168a24c-7b41-4cab-aef9-6e4a3652425a"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Network/locations/eastus/operations/5168a24c-7b41-4cab-aef9-6e4a3652425a?api-version=2018-04-01"
+ "a723a077-35a2-471c-abf8-7eac34fb297f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1116,59 +1185,66 @@
"no-cache"
],
"Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "Microsoft-IIS/8.5",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET",
+ "ASP.NET"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1195"
],
"x-ms-correlation-request-id": [
- "0b1b9569-5bbe-4d83-a325-b91f1260ee5f"
+ "f81a73af-69a0-4de7-a7cc-4b902c9e325e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113621Z:0b1b9569-5bbe-4d83-a325-b91f1260ee5f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "SOUTHINDIA:20180520T041129Z:f81a73af-69a0-4de7-a7cc-4b902c9e325e"
],
"Date": [
- "Fri, 04 May 2018 11:36:21 GMT"
+ "Sun, 20 May 2018 04:11:28 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559?api-version=2016-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzNzU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\"\r\n}",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450/configureFlowLog?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvcHMyNDUwL2NvbmZpZ3VyZUZsb3dMb2c/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n },\r\n \"flowAnalyticsConfiguration\": {\r\n \"networkWatcherFlowAnalyticsConfiguration\": {\r\n \"enabled\": true,\r\n \"workspaceId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"workspaceRegion\": \"eastus\",\r\n \"workspaceResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "96"
+ "824"
],
"x-ms-client-request-id": [
- "61fdf479-29ac-4574-b678-c0fda680f232"
+ "6282be95-259a-4d36-ba2a-8e2da89cfed8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"targetResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n },\r\n \"flowAnalyticsConfiguration\": {\r\n \"networkWatcherFlowAnalyticsConfiguration\": {\r\n \"enabled\": true,\r\n \"workspaceId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"workspaceRegion\": \"eastus\",\r\n \"workspaceResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\"\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "824"
],
"Content-Type": [
- "text/plain; charset=utf-8"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1176,62 +1252,69 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "17"
- ],
"x-ms-request-id": [
- "aae69252-36f5-49af-bba0-a73e4213998d"
+ "c3ed6183-40da-45fe-8c2a-54cbb8ba3684"
],
"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": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "051ef47c-ba8b-4931-bfcd-5ec40cbad129"
+ "22e3d358-df98-434e-9ec1-e68147e8acb1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113623Z:051ef47c-ba8b-4931-bfcd-5ec40cbad129"
+ "SOUTHINDIA:20180520T041206Z:22e3d358-df98-434e-9ec1-e68147e8acb1"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Fri, 04 May 2018 11:36:23 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Storage/locations/eastus/asyncoperations/aae69252-36f5-49af-bba0-a73e4213998d?monitor=true&api-version=2016-12-01"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Sun, 20 May 2018 04:12:06 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Storage/locations/eastus/asyncoperations/aae69252-36f5-49af-bba0-a73e4213998d?monitor=true&api-version=2016-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9hYWU2OTI1Mi0zNmY1LTQ5YWYtYmJhMC1hNzNlNDIxMzk5OGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps174/providers/Microsoft.Network/networkWatchers/ps2450/queryFlowLogStatus?api-version=2018-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlR3JvdXBzL3BzMTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvcHMyNDUwL3F1ZXJ5Rmxvd0xvZ1N0YXR1cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "160"
+ ],
+ "x-ms-client-request-id": [
+ "8eb00c52-aa9b-4575-b431-c296906f2699"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.1.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559\",\r\n \"name\": \"stops7559\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-04T11:36:23.4774381Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-04T11:36:23.4774381Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-04T11:36:23.3992808Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stops7559.blob.core.windows.net/\",\r\n \"queue\": \"https://stops7559.queue.core.windows.net/\",\r\n \"table\": \"https://stops7559.table.core.windows.net/\",\r\n \"file\": \"https://stops7559.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"targetResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Network/networkSecurityGroups/ps5168\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourceGroups/ps2870/providers/Microsoft.Storage/storageAccounts/stops9297\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n },\r\n \"flowAnalyticsConfiguration\": {\r\n \"networkWatcherFlowAnalyticsConfiguration\": {\r\n \"enabled\": true,\r\n \"workspaceId\": \"6d346fc7-1a84-40fa-8f81-bf2c902c0106\",\r\n \"workspaceRegion\": \"eastus\",\r\n \"workspaceResourceId\": \"/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870/providers/microsoft.operationalinsights/workspaces/tawspaceps3523\"\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "968"
+ "824"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1240,61 +1323,50 @@
"no-cache"
],
"x-ms-request-id": [
- "81f1a591-e3bb-4825-ba65-c901b0952607"
+ "4589ba76-4573-4f8c-964e-22d0257d14eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-correlation-request-id": [
- "d771a143-64c3-4ada-99ab-9d5399721247"
+ "7dfe05ac-d5a2-4a85-aab6-3e5a4222d994"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113641Z:d771a143-64c3-4ada-99ab-9d5399721247"
+ "SOUTHINDIA:20180520T041208Z:7dfe05ac-d5a2-4a85-aab6-3e5a4222d994"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Fri, 04 May 2018 11:36:40 GMT"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Sun, 20 May 2018 04:12:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559?api-version=2016-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzNzU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps2870?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMjg3MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "35344d45-d461-44b2-bb6f-2a5e1aca1e26"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/6.1.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559\",\r\n \"name\": \"stops7559\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-04T11:36:23.4774381Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-04T11:36:23.4774381Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-04T11:36:23.3992808Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stops7559.blob.core.windows.net/\",\r\n \"queue\": \"https://stops7559.queue.core.windows.net/\",\r\n \"table\": \"https://stops7559.table.core.windows.net/\",\r\n \"file\": \"https://stops7559.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "968"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1302,20 +1374,23 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "5f04c70e-60c2-4591-93ac-3bb63d0e35b0"
+ "Retry-After": [
+ "15"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "x-ms-request-id": [
+ "3d26d4d7-66f7-4bec-9025-80ae38d90b81"
],
"x-ms-correlation-request-id": [
- "e5fbaff3-442f-4c46-ad73-33f756972ea1"
+ "3d26d4d7-66f7-4bec-9025-80ae38d90b81"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113641Z:e5fbaff3-442f-4c46-ad73-33f756972ea1"
+ "SOUTHINDIA:20180520T041212Z:3d26d4d7-66f7-4bec-9025-80ae38d90b81"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1324,46 +1399,31 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:40 GMT"
+ "Sun, 20 May 2018 04:12:12 GMT"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ "Location": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422/configureFlowLog?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjIzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL3BzMjQyMi9jb25maWd1cmVGbG93TG9nP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n }\r\n}",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "431"
- ],
- "x-ms-client-request-id": [
- "ddd17126-22ca-452d-ae98-808ec9dd0a1b"
- ],
- "accept-language": [
- "en-US"
+ "x-ms-version": [
+ "2016-02-01"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"targetResourceId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "431"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -1371,69 +1431,56 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "2b9199df-7922-4c28-9057-9c8b95d1da10"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
+ "Retry-After": [
+ "15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "x-ms-request-id": [
+ "d5452030-a1eb-4402-994b-e455d50edf0d"
],
"x-ms-correlation-request-id": [
- "b50ea125-3350-4f2d-985b-a1b066df27f5"
+ "d5452030-a1eb-4402-994b-e455d50edf0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113646Z:b50ea125-3350-4f2d-985b-a1b066df27f5"
+ "SOUTHINDIA:20180520T041213Z:d5452030-a1eb-4402-994b-e455d50edf0d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Fri, 04 May 2018 11:36:45 GMT"
+ "Sun, 20 May 2018 04:12:12 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6230/providers/Microsoft.Network/networkWatchers/ps2422/queryFlowLogStatus?api-version=2018-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjIzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL3BzMjQyMi9xdWVyeUZsb3dMb2dTdGF0dXM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\"\r\n}",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "160"
- ],
- "x-ms-client-request-id": [
- "edc3df8b-fa5a-4ad9-aff2-bd7c3800ab5a"
- ],
- "accept-language": [
- "en-US"
+ "x-ms-version": [
+ "2016-02-01"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"targetResourceId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Network/networkSecurityGroups/ps7372\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7559/providers/Microsoft.Storage/storageAccounts/stops7559\",\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n },\r\n \"flowAnalyticsConfiguration\": {\r\n \"networkWatcherFlowAnalyticsConfiguration\": {\r\n \"enabled\": false,\r\n \"workspaceId\": \"/subscriptions//resourcegroups//providers/microsoft.operationalinsights/workspaces/,,\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "665"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -1441,43 +1488,48 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "9277e7b1-cd80-4a21-987a-9a308f22d6f4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
+ "Retry-After": [
+ "15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "x-ms-request-id": [
+ "b575304e-8ea2-4935-a056-d4b7e30d62ef"
],
"x-ms-correlation-request-id": [
- "dcd62855-0fd1-4a76-bde3-cfa849ed89ea"
+ "b575304e-8ea2-4935-a056-d4b7e30d62ef"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113647Z:dcd62855-0fd1-4a76-bde3-cfa849ed89ea"
+ "SOUTHINDIA:20180520T041228Z:b575304e-8ea2-4935-a056-d4b7e30d62ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Fri, 04 May 2018 11:36:46 GMT"
+ "Sun, 20 May 2018 04:12:27 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7559?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzU1OT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
@@ -1496,17 +1548,17 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
],
"x-ms-request-id": [
- "e059375d-7860-491f-b7df-fc66a0e43b91"
+ "25b57a44-be20-492c-aa01-b2cfd6755fda"
],
"x-ms-correlation-request-id": [
- "e059375d-7860-491f-b7df-fc66a0e43b91"
+ "25b57a44-be20-492c-aa01-b2cfd6755fda"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113648Z:e059375d-7860-491f-b7df-fc66a0e43b91"
+ "SOUTHINDIA:20180520T041244Z:25b57a44-be20-492c-aa01-b2cfd6755fda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1518,17 +1570,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:48 GMT"
+ "Sun, 20 May 2018 04:12:43 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1554,16 +1606,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "14970"
],
"x-ms-request-id": [
- "b5ba016c-7cb4-4ab1-9b71-efda3dff1634"
+ "65548d41-d14c-4057-a9ef-ec6f267528b3"
],
"x-ms-correlation-request-id": [
- "b5ba016c-7cb4-4ab1-9b71-efda3dff1634"
+ "65548d41-d14c-4057-a9ef-ec6f267528b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113648Z:b5ba016c-7cb4-4ab1-9b71-efda3dff1634"
+ "SOUTHINDIA:20180520T041259Z:65548d41-d14c-4057-a9ef-ec6f267528b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1575,17 +1627,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:36:48 GMT"
+ "Sun, 20 May 2018 04:12:59 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1611,16 +1663,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14969"
],
"x-ms-request-id": [
- "1950c6de-379f-437b-a74c-602117fcebab"
+ "15395c95-44c5-409d-b1ac-e2ca37997652"
],
"x-ms-correlation-request-id": [
- "1950c6de-379f-437b-a74c-602117fcebab"
+ "15395c95-44c5-409d-b1ac-e2ca37997652"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113703Z:1950c6de-379f-437b-a74c-602117fcebab"
+ "SOUTHINDIA:20180520T041315Z:15395c95-44c5-409d-b1ac-e2ca37997652"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1632,17 +1684,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:37:03 GMT"
+ "Sun, 20 May 2018 04:13:14 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1668,16 +1720,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14968"
],
"x-ms-request-id": [
- "e20e8e09-8c40-4ebb-a339-8b7db19a609a"
+ "9f60f485-48ea-4d3b-ba0a-6870be2e099f"
],
"x-ms-correlation-request-id": [
- "e20e8e09-8c40-4ebb-a339-8b7db19a609a"
+ "9f60f485-48ea-4d3b-ba0a-6870be2e099f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113719Z:e20e8e09-8c40-4ebb-a339-8b7db19a609a"
+ "SOUTHINDIA:20180520T041330Z:9f60f485-48ea-4d3b-ba0a-6870be2e099f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1689,17 +1741,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:37:18 GMT"
+ "Sun, 20 May 2018 04:13:30 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1725,16 +1777,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14967"
],
"x-ms-request-id": [
- "08d9090a-3f05-49f5-9aac-ebb5efa1e269"
+ "0b3ba223-6298-44b7-b891-72000d733010"
],
"x-ms-correlation-request-id": [
- "08d9090a-3f05-49f5-9aac-ebb5efa1e269"
+ "0b3ba223-6298-44b7-b891-72000d733010"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113734Z:08d9090a-3f05-49f5-9aac-ebb5efa1e269"
+ "SOUTHINDIA:20180520T041346Z:0b3ba223-6298-44b7-b891-72000d733010"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1746,17 +1798,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:37:33 GMT"
+ "Sun, 20 May 2018 04:13:45 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1782,16 +1834,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14966"
],
"x-ms-request-id": [
- "b419509c-9376-461f-a21e-93f4f104ebbe"
+ "07921109-56e6-472b-ade4-7b4797df1147"
],
"x-ms-correlation-request-id": [
- "b419509c-9376-461f-a21e-93f4f104ebbe"
+ "07921109-56e6-472b-ade4-7b4797df1147"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113749Z:b419509c-9376-461f-a21e-93f4f104ebbe"
+ "SOUTHINDIA:20180520T041401Z:07921109-56e6-472b-ade4-7b4797df1147"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1803,17 +1855,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:37:48 GMT"
+ "Sun, 20 May 2018 04:14:01 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1839,16 +1891,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14965"
],
"x-ms-request-id": [
- "d437cae5-b910-48e8-9799-c030bfca0f4d"
+ "ccf86ffb-dff8-4ca7-b018-03b3a0a8f2eb"
],
"x-ms-correlation-request-id": [
- "d437cae5-b910-48e8-9799-c030bfca0f4d"
+ "ccf86ffb-dff8-4ca7-b018-03b3a0a8f2eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113804Z:d437cae5-b910-48e8-9799-c030bfca0f4d"
+ "SOUTHINDIA:20180520T041417Z:ccf86ffb-dff8-4ca7-b018-03b3a0a8f2eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1860,17 +1912,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:04 GMT"
+ "Sun, 20 May 2018 04:14:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1896,16 +1948,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14964"
],
"x-ms-request-id": [
- "449c3f83-1de1-418e-8f23-f5fc4de2c30f"
+ "e6be880a-a483-4f46-959b-0dd9bc522fd6"
],
"x-ms-correlation-request-id": [
- "449c3f83-1de1-418e-8f23-f5fc4de2c30f"
+ "e6be880a-a483-4f46-959b-0dd9bc522fd6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113819Z:449c3f83-1de1-418e-8f23-f5fc4de2c30f"
+ "SOUTHINDIA:20180520T041433Z:e6be880a-a483-4f46-959b-0dd9bc522fd6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1917,17 +1969,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:18 GMT"
+ "Sun, 20 May 2018 04:14:32 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4NzAtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE56QXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1950,16 +2002,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14970"
+ "14963"
],
"x-ms-request-id": [
- "4c9b3abb-03da-4afe-b8c6-b8f2c0881f82"
+ "4d410f01-b4e1-4ab2-88a8-a951dd21f50b"
],
"x-ms-correlation-request-id": [
- "4c9b3abb-03da-4afe-b8c6-b8f2c0881f82"
+ "4d410f01-b4e1-4ab2-88a8-a951dd21f50b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113835Z:4c9b3abb-03da-4afe-b8c6-b8f2c0881f82"
+ "SOUTHINDIA:20180520T041448Z:4d410f01-b4e1-4ab2-88a8-a951dd21f50b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1971,14 +2023,14 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:34 GMT"
+ "Sun, 20 May 2018 04:14:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6230?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjIzMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/resourcegroups/ps174?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L3Jlc291cmNlZ3JvdXBzL3BzMTc0P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -2000,17 +2052,17 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-request-id": [
- "c6e09061-8e4e-424c-a704-61ddb1ecc280"
+ "ab5bf745-d39d-4ee1-8d82-2217e8c9a22a"
],
"x-ms-correlation-request-id": [
- "c6e09061-8e4e-424c-a704-61ddb1ecc280"
+ "ab5bf745-d39d-4ee1-8d82-2217e8c9a22a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113836Z:c6e09061-8e4e-424c-a704-61ddb1ecc280"
+ "SOUTHINDIA:20180520T041451Z:ab5bf745-d39d-4ee1-8d82-2217e8c9a22a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2022,17 +2074,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:36 GMT"
+ "Sun, 20 May 2018 04:14:51 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2058,16 +2110,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "14962"
],
"x-ms-request-id": [
- "05a9d2c7-1674-4e8b-8d40-6a2201125a22"
+ "bb22256a-459c-45a0-abca-e121557117cb"
],
"x-ms-correlation-request-id": [
- "05a9d2c7-1674-4e8b-8d40-6a2201125a22"
+ "bb22256a-459c-45a0-abca-e121557117cb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113836Z:05a9d2c7-1674-4e8b-8d40-6a2201125a22"
+ "SOUTHINDIA:20180520T041452Z:bb22256a-459c-45a0-abca-e121557117cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2079,17 +2131,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:36 GMT"
+ "Sun, 20 May 2018 04:14:51 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2115,16 +2167,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14971"
],
"x-ms-request-id": [
- "f2c5e16b-07b4-486e-9bae-648a77ce14e4"
+ "8fac8d72-4589-407a-bcdd-ae662f620430"
],
"x-ms-correlation-request-id": [
- "f2c5e16b-07b4-486e-9bae-648a77ce14e4"
+ "8fac8d72-4589-407a-bcdd-ae662f620430"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113851Z:f2c5e16b-07b4-486e-9bae-648a77ce14e4"
+ "SOUTHINDIA:20180520T041507Z:8fac8d72-4589-407a-bcdd-ae662f620430"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2136,17 +2188,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:38:51 GMT"
+ "Sun, 20 May 2018 04:15:07 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2172,16 +2224,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14967"
+ "14970"
],
"x-ms-request-id": [
- "48416e29-9105-4f51-b45c-5d03cb340857"
+ "0bbc5c05-d1a7-4323-bff5-d0df7f1ce27a"
],
"x-ms-correlation-request-id": [
- "48416e29-9105-4f51-b45c-5d03cb340857"
+ "0bbc5c05-d1a7-4323-bff5-d0df7f1ce27a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113906Z:48416e29-9105-4f51-b45c-5d03cb340857"
+ "SOUTHINDIA:20180520T041523Z:0bbc5c05-d1a7-4323-bff5-d0df7f1ce27a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2193,17 +2245,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:39:06 GMT"
+ "Sun, 20 May 2018 04:15:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2229,16 +2281,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14969"
],
"x-ms-request-id": [
- "5b110d8a-ce62-45d5-9f9c-81cca63e0830"
+ "4e77b865-86ee-4ec1-914e-18302757eb20"
],
"x-ms-correlation-request-id": [
- "5b110d8a-ce62-45d5-9f9c-81cca63e0830"
+ "4e77b865-86ee-4ec1-914e-18302757eb20"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113921Z:5b110d8a-ce62-45d5-9f9c-81cca63e0830"
+ "SOUTHINDIA:20180520T041538Z:4e77b865-86ee-4ec1-914e-18302757eb20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2250,17 +2302,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:39:21 GMT"
+ "Sun, 20 May 2018 04:15:38 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2286,16 +2338,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "14968"
],
"x-ms-request-id": [
- "a11ff9f0-00be-4d70-aca4-5d8da85d35c6"
+ "5957ea23-7618-4492-95c2-8c33f2e178e8"
],
"x-ms-correlation-request-id": [
- "a11ff9f0-00be-4d70-aca4-5d8da85d35c6"
+ "5957ea23-7618-4492-95c2-8c33f2e178e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113937Z:a11ff9f0-00be-4d70-aca4-5d8da85d35c6"
+ "SOUTHINDIA:20180520T041554Z:5957ea23-7618-4492-95c2-8c33f2e178e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2307,17 +2359,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:39:36 GMT"
+ "Sun, 20 May 2018 04:15:54 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2343,16 +2395,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "14967"
],
"x-ms-request-id": [
- "6e223ec9-5c17-4a95-b4ea-2cc016eb552d"
+ "1ee49f09-9ce8-438d-bb54-0a5787588154"
],
"x-ms-correlation-request-id": [
- "6e223ec9-5c17-4a95-b4ea-2cc016eb552d"
+ "1ee49f09-9ce8-438d-bb54-0a5787588154"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T113952Z:6e223ec9-5c17-4a95-b4ea-2cc016eb552d"
+ "SOUTHINDIA:20180520T041609Z:1ee49f09-9ce8-438d-bb54-0a5787588154"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2364,17 +2416,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:39:51 GMT"
+ "Sun, 20 May 2018 04:16:09 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2400,16 +2452,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "14966"
],
"x-ms-request-id": [
- "c313e85d-e405-4714-9208-550804344d15"
+ "78104e62-86cd-4a2a-bb0c-05074176f28b"
],
"x-ms-correlation-request-id": [
- "c313e85d-e405-4714-9208-550804344d15"
+ "78104e62-86cd-4a2a-bb0c-05074176f28b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T114007Z:c313e85d-e405-4714-9208-550804344d15"
+ "SOUTHINDIA:20180520T041625Z:78104e62-86cd-4a2a-bb0c-05074176f28b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2421,17 +2473,17 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:40:06 GMT"
+ "Sun, 20 May 2018 04:16:24 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU16QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/a38f78b2-f840-4628-90f8-009ec9745a16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NC1FQVNUVVMyRVVBUCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMmV1YXAifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4Zjc4YjItZjg0MC00NjI4LTkwZjgtMDA5ZWM5NzQ1YTE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05DMUZRVk5VVlZNeVJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1tVjFZWEFpZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2454,16 +2506,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14962"
+ "14965"
],
"x-ms-request-id": [
- "76ae961a-54d7-4a14-9ae5-c3156de3072e"
+ "ef1d1ede-a1c7-4f80-bcb9-fb8150383248"
],
"x-ms-correlation-request-id": [
- "76ae961a-54d7-4a14-9ae5-c3156de3072e"
+ "ef1d1ede-a1c7-4f80-bcb9-fb8150383248"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180504T114022Z:76ae961a-54d7-4a14-9ae5-c3156de3072e"
+ "SOUTHINDIA:20180520T041640Z:ef1d1ede-a1c7-4f80-bcb9-fb8150383248"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2475,7 +2527,7 @@
"no-cache"
],
"Date": [
- "Fri, 04 May 2018 11:40:22 GMT"
+ "Sun, 20 May 2018 04:16:40 GMT"
]
},
"StatusCode": 200
@@ -2483,16 +2535,16 @@
],
"Names": {
"Test-FlowLog": [
- "ps7559",
- "ps2422",
- "ps6230",
- "ps2633",
- "ps1223",
- "ps104",
- "ps7372"
+ "ps2870",
+ "ps2450",
+ "ps174",
+ "ps4952",
+ "ps5168",
+ "ps9297",
+ "ps3523"
]
},
"Variables": {
- "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb"
+ "SubscriptionId": "a38f78b2-f840-4628-90f8-009ec9745a16"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Commands.Network.Test/packages.config b/src/ResourceManager/Network/Commands.Network.Test/packages.config
index ad00f78077d2..e0b876fdb569 100644
--- a/src/ResourceManager/Network/Commands.Network.Test/packages.config
+++ b/src/ResourceManager/Network/Commands.Network.Test/packages.config
@@ -8,7 +8,8 @@
-
+
+
diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.Netcore.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.Netcore.csproj
index 4d75f5d8e9e9..58f580b1700f 100644
--- a/src/ResourceManager/Network/Commands.Network/Commands.Network.Netcore.csproj
+++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.Netcore.csproj
@@ -28,7 +28,7 @@
-
+
diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
index bb5671205b1b..1dcd03458654 100644
--- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
+++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj
@@ -57,8 +57,8 @@
..\..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll
True
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
@@ -356,6 +356,8 @@
+
+
diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
index 43f260e978b4..568050d3676c 100644
--- a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs
@@ -222,10 +222,14 @@ private static void Initialize()
// CNM to MNM
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
// MNM to CNM
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
// CheckConnectivity
// CNM to MNM
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 c7ec791825cb..259e8650b83f 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
@@ -1604,6 +1604,10 @@
RetentionPolicyText
+
+
+ FlowAnalyticsConfigurationText
+
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSFlowLog.cs b/src/ResourceManager/Network/Commands.Network/Models/PSFlowLog.cs
index 3c844773fa59..3c4fc627d7b0 100644
--- a/src/ResourceManager/Network/Commands.Network/Models/PSFlowLog.cs
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSFlowLog.cs
@@ -29,10 +29,19 @@ public class PSFlowLog
[JsonProperty(Order = 1)]
public string TargetResourceId { get; set; }
+ [JsonProperty(Order = 1)]
+ public PSTrafficAnalyticsProperties FlowAnalyticsConfiguration { get; set; }
+
[JsonIgnore]
public string RetentionPolicyText
{
get { return JsonConvert.SerializeObject(RetentionPolicy, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
}
+
+ [JsonIgnore]
+ public string FlowAnalyticsConfigurationText
+ {
+ get { return JsonConvert.SerializeObject(FlowAnalyticsConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
+ }
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsConfigurationProperties.cs b/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsConfigurationProperties.cs
new file mode 100644
index 000000000000..1f2026ed2e41
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsConfigurationProperties.cs
@@ -0,0 +1,69 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Parameters that define the configuration of traffic analytics.
+ ///
+ public partial class PSTrafficAnalyticsConfigurationProperties
+ {
+
+ ///
+ /// Gets or sets flag to enable/disable traffic analytics.
+ ///
+ [JsonProperty(PropertyName = "enabled")]
+ public bool Enabled { get; set; }
+
+ ///
+ /// Gets or sets the resource guid of the attached workspace
+ ///
+ [JsonProperty(PropertyName = "workspaceId")]
+ public string WorkspaceId { get; set; }
+
+ ///
+ /// Gets or sets the location of the attached workspace
+ ///
+ [JsonProperty(PropertyName = "workspaceRegion")]
+ public string WorkspaceRegion { get; set; }
+
+ ///
+ /// Gets or sets resource Id of the attached workspace
+ ///
+ [JsonProperty(PropertyName = "workspaceResourceId")]
+ public string WorkspaceResourceId { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (WorkspaceId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "WorkspaceId");
+ }
+ if (WorkspaceRegion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "WorkspaceRegion");
+ }
+ if (WorkspaceResourceId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "WorkspaceResourceId");
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsProperties.cs b/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsProperties.cs
new file mode 100644
index 000000000000..99e40c2f9be6
--- /dev/null
+++ b/src/ResourceManager/Network/Commands.Network/Models/PSTrafficAnalyticsProperties.cs
@@ -0,0 +1,46 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Parameters that define the configuration of traffic analytics.
+ ///
+ public partial class PSTrafficAnalyticsProperties
+ {
+
+ ///
+ ///
+ [JsonProperty(PropertyName = "networkWatcherFlowAnalyticsConfiguration")]
+ public PSTrafficAnalyticsConfigurationProperties NetworkWatcherFlowAnalyticsConfiguration { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (NetworkWatcherFlowAnalyticsConfiguration == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "NetworkWatcherFlowAnalyticsConfiguration");
+ }
+ if (NetworkWatcherFlowAnalyticsConfiguration != null)
+ {
+ NetworkWatcherFlowAnalyticsConfiguration.Validate();
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/Network/Commands.Network/NetworkWatcher/SetAzureNetworkWatcherConfigFlowLogCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkWatcher/SetAzureNetworkWatcherConfigFlowLogCommand.cs
index 81b2e280e38d..9cfbf28c70f0 100644
--- a/src/ResourceManager/Network/Commands.Network/NetworkWatcher/SetAzureNetworkWatcherConfigFlowLogCommand.cs
+++ b/src/ResourceManager/Network/Commands.Network/NetworkWatcher/SetAzureNetworkWatcherConfigFlowLogCommand.cs
@@ -17,20 +17,45 @@
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
using Microsoft.Azure.Management.Network;
-using System;
+using System.Net;
using System.Management.Automation;
using MNM = Microsoft.Azure.Management.Network.Models;
+using Microsoft.Azure.Management.Internal.Network.Common;
namespace Microsoft.Azure.Commands.Network
{
- [Cmdlet(VerbsCommon.Set, "AzureRmNetworkWatcherConfigFlowLog", SupportsShouldProcess = true, DefaultParameterSetName = "SetByResource"), OutputType(typeof(PSFlowLog))]
+ [Cmdlet(VerbsCommon.Set, "AzureRmNetworkWatcherConfigFlowLog", SupportsShouldProcess = true, DefaultParameterSetName = SetFlowlogByResourceWithoutTA), OutputType(typeof(PSFlowLog))]
public class SetAzureNetworkWatcherConfigFlowLogCommand : NetworkWatcherBaseCmdlet
{
+ private const string SetFlowlogByResourceWithTAByResource = "SetFlowlogByResourceWithTAByResource";
+ private const string SetFlowlogByResourceWithTAByDetails = "SetFlowlogByResourceWithTAByDetails";
+ private const string SetFlowlogByResourceWithoutTA = "SetFlowlogByResourceWithoutTA";
+ private const string SetFlowlogByNameWithTAByResource = "SetFlowlogByNameWithTAByResource";
+ private const string SetFlowlogByNameWithTAByDetails = "SetFlowlogByNameWithTAByDetails";
+ private const string SetFlowlogByNameWithoutTA = "SetFlowlogByNameWithoutTA";
+ private const string SetFlowlogByLocationWithTAByResource = "SetFlowlogByLocationWithTAByResource";
+ private const string SetFlowlogByLocationWithTAByDetails = "SetFlowlogByLocationWithTAByDetails";
+ private const string SetFlowlogByLocationWithoutTA = "SetFlowlogByLocationWithoutTA";
+ private const string SetFlowlogByResource = "SetFlowlogByResource";
+ private const string SetFlowlogByLocation = "SetFlowlogByLocation";
+ private const string WithTA = "WithTA";
+ private const string TAByDetails = "TAByDetails";
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The network watcher resource.",
+ ParameterSetName = SetFlowlogByResourceWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The network watcher resource.",
+ ParameterSetName = SetFlowlogByResourceWithTAByDetails)]
[Parameter(
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The network watcher resource.",
- ParameterSetName = "SetByResource")]
+ ParameterSetName = SetFlowlogByResourceWithoutTA)]
[ValidateNotNull]
public PSNetworkWatcher NetworkWatcher { get; set; }
@@ -39,7 +64,17 @@ public class SetAzureNetworkWatcherConfigFlowLogCommand : NetworkWatcherBaseCmdl
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The name of network watcher.",
- ParameterSetName = "SetByName")]
+ ParameterSetName = SetFlowlogByNameWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The name of network watcher.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The name of network watcher.",
+ ParameterSetName = SetFlowlogByNameWithoutTA)]
[ValidateNotNullOrEmpty]
public string NetworkWatcherName { get; set; }
@@ -47,15 +82,36 @@ public class SetAzureNetworkWatcherConfigFlowLogCommand : NetworkWatcherBaseCmdl
Mandatory = true,
ValueFromPipelineByPropertyName = true,
HelpMessage = "The name of the network watcher resource group.",
- ParameterSetName = "SetByName")]
+ ParameterSetName = SetFlowlogByNameWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The name of the network watcher resource group.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The name of the network watcher resource group.",
+ ParameterSetName = SetFlowlogByNameWithoutTA)]
[ResourceGroupCompleter]
[ValidateNotNullOrEmpty]
public string ResourceGroupName { get; set; }
[Parameter(
Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
HelpMessage = "Location of the network watcher.",
- ParameterSetName = "SetByLocation")]
+ ParameterSetName = SetFlowlogByLocationWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Location of the network watcher.",
+ ParameterSetName = SetFlowlogByLocationWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Location of the network watcher.",
+ ParameterSetName = SetFlowlogByLocationWithoutTA)]
[LocationCompleter("Microsoft.Network/networkWatchers")]
[ValidateNotNull]
public string Location { get; set; }
@@ -99,25 +155,130 @@ public class SetAzureNetworkWatcherConfigFlowLogCommand : NetworkWatcherBaseCmdl
[Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
public SwitchParameter AsJob { get; set; }
+ [Alias("EnableTA")]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByResourceWithTAByResource)]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByResourceWithTAByDetails)]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByNameWithTAByResource)]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByLocationWithTAByResource)]
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to enable/disable retention.",
+ ParameterSetName = SetFlowlogByLocationWithTAByDetails)]
+ [ValidateNotNull]
+ public SwitchParameter EnableTrafficAnalytics { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Subscription of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByResourceWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Subscription of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Subscription of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByLocationWithTAByDetails)]
+ [ValidateNotNullOrEmpty]
+ public string WorkspaceResourceId { get; set; }
+
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "GUID of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByResourceWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "GUID of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Subscription of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByLocationWithTAByDetails)]
+ [ValidateNotNullOrEmpty]
+ public string WorkspaceGUID { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Azure Region of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByResourceWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Azure Region of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByNameWithTAByDetails)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Subscription of the WS which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByLocationWithTAByDetails)]
+ [ValidateNotNullOrEmpty]
+ public string WorkspaceLocation { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The WS object which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByResourceWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The WS object which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByNameWithTAByResource)]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipeline = true,
+ HelpMessage = "The WS object which is used to store the traffic analytics data.",
+ ParameterSetName = SetFlowlogByLocationWithTAByResource)]
+ [ValidateNotNull]
+ public IOperationalInsightWorkspace Workspace { get; set; }
+
public override void Execute()
{
base.Execute();
string resourceGroupName;
string name;
+ string WorkspaceResourceId;
+ string WorkspaceGUID;
+ string WorkspaceLocation;
+
- if (string.Equals(this.ParameterSetName, "SetByLocation", StringComparison.OrdinalIgnoreCase))
+ if (ParameterSetName.Contains(SetFlowlogByLocation))
{
var networkWatcher = this.GetNetworkWatcherByLocation(this.Location);
if (networkWatcher == null)
{
- throw new ArgumentException("There is no network watcher in location {0}", this.Location);
+ throw new System.ArgumentException("There is no network watcher in location {0}", this.Location);
}
resourceGroupName = NetworkBaseCmdlet.GetResourceGroup(networkWatcher.Id);
name = networkWatcher.Name;
}
- else if (ParameterSetName.Contains("SetByResource"))
+ else if (ParameterSetName.Contains(SetFlowlogByResource))
{
resourceGroupName = this.NetworkWatcher.ResourceGroupName;
name = this.NetworkWatcher.Name;
@@ -145,6 +306,41 @@ public override void Execute()
parameters.RetentionPolicy.Days = this.RetentionInDays;
}
+ if (ParameterSetName.Contains(WithTA))
+ {
+ parameters.FlowAnalyticsConfiguration = new MNM.TrafficAnalyticsProperties();
+ parameters.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration = new MNM.TrafficAnalyticsConfigurationProperties();
+
+ parameters.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.Enabled = this.EnableTrafficAnalytics.IsPresent;
+
+ if (ParameterSetName.Contains(TAByDetails))
+ {
+ string[] workspaceDetailsComponents = this.WorkspaceResourceId.Split('/');
+
+ //Expected format : /subscriptions/-WorkspaceSubscriptionId-/resourcegroups/-WorkspaceResourceGroup-/providers/microsoft.operationalinsights/workspaces/-this.WorkspaceName-
+ if (workspaceDetailsComponents.Length != 9)
+ {
+ throw new System.ArgumentException("The given workspace resource id is not in format of: /subscriptions/-WorkspaceSubscriptionId-/resourcegroups/-WorkspaceResourceGroup-/providers/microsoft.operationalinsights/workspaces/-this.WorkspaceName-.");
+ }
+
+ WorkspaceResourceId = this.WorkspaceResourceId;
+ WorkspaceGUID = this.WorkspaceGUID;
+ WorkspaceLocation = this.WorkspaceLocation;
+ }
+ else
+ {
+
+ WorkspaceResourceId = this.Workspace.ResourceId;
+ WorkspaceGUID = this.Workspace.CustomerId.ToString();
+ WorkspaceLocation = this.Workspace.Location;
+
+ }
+
+ parameters.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceResourceId = WorkspaceResourceId;
+ parameters.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceId = WorkspaceGUID;
+ parameters.FlowAnalyticsConfiguration.NetworkWatcherFlowAnalyticsConfiguration.WorkspaceRegion = WorkspaceLocation;
+ }
+
PSFlowLog flowLog = new PSFlowLog();
flowLog = SetFlowLogConfig(resourceGroupName, name, parameters);
@@ -158,5 +354,6 @@ public PSFlowLog SetFlowLogConfig(string resourceGroupName, string name, MNM.Flo
return psFlowLog;
}
+
}
}
diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConfigFlowLog.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConfigFlowLog.md
index 7d67356556c9..9264a74deb0d 100644
--- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConfigFlowLog.md
+++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConfigFlowLog.md
@@ -12,14 +12,48 @@ Configures flow logging for a target resource.
## SYNTAX
-### SetByResource (Default)
+### SetFlowlogByResourceWithoutTA (Default)
```
Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcher -TargetResourceId
-EnableFlowLog -StorageAccountId [-EnableRetention ] [-RetentionInDays ]
[-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
-### SetByName
+### SetFlowlogByResourceWithTAByResource
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcher -TargetResourceId
+ -EnableFlowLog -StorageAccountId [-EnableRetention ] [-RetentionInDays ]
+ [-AsJob] [-EnableTrafficAnalytics] -Workspace
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetFlowlogByResourceWithTAByDetails
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcher -TargetResourceId
+ -EnableFlowLog -StorageAccountId [-EnableRetention ] [-RetentionInDays ]
+ [-AsJob] [-EnableTrafficAnalytics] -WorkspaceResourceId -WorkspaceGUID
+ -WorkspaceLocation [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### SetFlowlogByNameWithTAByResource
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcherName -ResourceGroupName
+ -TargetResourceId -EnableFlowLog -StorageAccountId [-EnableRetention ]
+ [-RetentionInDays ] [-AsJob] [-EnableTrafficAnalytics] -Workspace
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetFlowlogByNameWithTAByDetails
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcherName -ResourceGroupName
+ -TargetResourceId -EnableFlowLog -StorageAccountId [-EnableRetention ]
+ [-RetentionInDays ] [-AsJob] [-EnableTrafficAnalytics] -WorkspaceResourceId
+ -WorkspaceGUID -WorkspaceLocation [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### SetFlowlogByNameWithoutTA
```
Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcherName -ResourceGroupName
-TargetResourceId -EnableFlowLog -StorageAccountId [-EnableRetention ]
@@ -27,7 +61,23 @@ Set-AzureRmNetworkWatcherConfigFlowLog -NetworkWatcherName -ResourceGro
[]
```
-### SetByLocation
+### SetFlowlogByLocationWithTAByResource
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -Location -TargetResourceId -EnableFlowLog
+ -StorageAccountId [-EnableRetention ] [-RetentionInDays ] [-AsJob]
+ [-EnableTrafficAnalytics] -Workspace [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### SetFlowlogByLocationWithTAByDetails
+```
+Set-AzureRmNetworkWatcherConfigFlowLog -Location -TargetResourceId -EnableFlowLog
+ -StorageAccountId [-EnableRetention ] [-RetentionInDays ] [-AsJob]
+ [-EnableTrafficAnalytics] -WorkspaceResourceId -WorkspaceGUID -WorkspaceLocation
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetFlowlogByLocationWithoutTA
```
Set-AzureRmNetworkWatcherConfigFlowLog -Location -TargetResourceId -EnableFlowLog
-StorageAccountId [-EnableRetention ] [-RetentionInDays ] [-AsJob]
@@ -123,18 +173,33 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -EnableTrafficAnalytics
+Flag to enable/disable retention.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetFlowlogByResourceWithTAByResource, SetFlowlogByResourceWithTAByDetails, SetFlowlogByNameWithTAByResource, SetFlowlogByNameWithTAByDetails, SetFlowlogByLocationWithTAByResource, SetFlowlogByLocationWithTAByDetails
+Aliases: EnableTA
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Location
Location of the network watcher.
```yaml
Type: String
-Parameter Sets: SetByLocation
+Parameter Sets: SetFlowlogByLocationWithTAByResource, SetFlowlogByLocationWithTAByDetails, SetFlowlogByLocationWithoutTA
Aliases:
Required: True
Position: Named
Default value: None
-Accept pipeline input: False
+Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
@@ -143,7 +208,7 @@ The network watcher resource.
```yaml
Type: PSNetworkWatcher
-Parameter Sets: SetByResource
+Parameter Sets: SetFlowlogByResourceWithoutTA, SetFlowlogByResourceWithTAByResource, SetFlowlogByResourceWithTAByDetails
Aliases:
Required: True
@@ -158,7 +223,7 @@ The name of network watcher.
```yaml
Type: String
-Parameter Sets: SetByName
+Parameter Sets: SetFlowlogByNameWithTAByResource, SetFlowlogByNameWithTAByDetails, SetFlowlogByNameWithoutTA
Aliases: Name
Required: True
@@ -173,7 +238,7 @@ The name of the network watcher resource group.
```yaml
Type: String
-Parameter Sets: SetByName
+Parameter Sets: SetFlowlogByNameWithTAByResource, SetFlowlogByNameWithTAByDetails, SetFlowlogByNameWithoutTA
Aliases:
Required: True
@@ -228,6 +293,78 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -Workspace
+The WS object which is used to store the traffic analytics data.
+
+```yaml
+Type: IOperationalInsightWorkspace
+Parameter Sets: SetFlowlogByResourceWithTAByResource
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+```yaml
+Type: IOperationalInsightWorkspace
+Parameter Sets: SetFlowlogByNameWithTAByResource, SetFlowlogByLocationWithTAByResource
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WorkspaceGUID
+GUID of the WS which is used to store the traffic analytics data.
+
+```yaml
+Type: String
+Parameter Sets: SetFlowlogByResourceWithTAByDetails, SetFlowlogByNameWithTAByDetails, SetFlowlogByLocationWithTAByDetails
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WorkspaceLocation
+Azure Region of the WS which is used to store the traffic analytics data.
+
+```yaml
+Type: String
+Parameter Sets: SetFlowlogByResourceWithTAByDetails, SetFlowlogByNameWithTAByDetails, SetFlowlogByLocationWithTAByDetails
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WorkspaceResourceId
+Subscription of the WS which is used to store the traffic analytics data.
+
+```yaml
+Type: String
+Parameter Sets: SetFlowlogByResourceWithTAByDetails, SetFlowlogByNameWithTAByDetails, SetFlowlogByLocationWithTAByDetails
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Confirm
Prompts you for confirmation before running the cmdlet.
diff --git a/src/ResourceManager/Network/Commands.Network/packages.config b/src/ResourceManager/Network/Commands.Network/packages.config
index 56082d509bad..8a6bd92c3540 100644
--- a/src/ResourceManager/Network/Commands.Network/packages.config
+++ b/src/ResourceManager/Network/Commands.Network/packages.config
@@ -2,5 +2,5 @@
-
+
\ No newline at end of file
diff --git a/src/ResourceManager/Network/Network.sln b/src/ResourceManager/Network/Network.sln
index 477319475d07..aeb76ce0ed78 100644
--- a/src/ResourceManager/Network/Network.sln
+++ b/src/ResourceManager/Network/Network.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
-VisualStudioVersion = 15.0.27428.2037
+VisualStudioVersion = 15.0.27428.2005
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}"
EndProject
@@ -56,6 +56,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Strategies"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Compute", "..\..\Common\Commands.Common.Compute\Commands.Common.Compute.csproj", "{F6D508D1-BE2D-475D-AA0F-DFB5C615CC9D}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.OperationalInsights", "..\OperationalInsights\Commands.OperationalInsights\Commands.OperationalInsights.csproj", "{5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.KeyVault", "..\..\Common\Commands.Common.KeyVault\Commands.Common.KeyVault.csproj", "{836965C0-B198-4D01-B3D7-757DB62B49A0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.WebSites", "..\..\Common\Commands.Common.Websites\Commands.Common.WebSites.csproj", "{592B3E1B-49E3-4F3C-BF6B-E5D4133B1443}"
@@ -169,6 +170,10 @@ Global
{F6D508D1-BE2D-475D-AA0F-DFB5C615CC9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6D508D1-BE2D-475D-AA0F-DFB5C615CC9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6D508D1-BE2D-475D-AA0F-DFB5C615CC9D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Release|Any CPU.Build.0 = Release|Any CPU
{836965C0-B198-4D01-B3D7-757DB62B49A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{836965C0-B198-4D01-B3D7-757DB62B49A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{836965C0-B198-4D01-B3D7-757DB62B49A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -192,6 +197,6 @@ Global
{CFF09E81-1E31-444E-B4D4-A21E946C29E2} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {9234144B-4552-40ED-977A-55E57139875F}
+ SolutionGuid = {81FE5D8D-D707-4DBC-9782-95E44EA873C3}
EndGlobalSection
EndGlobal
diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.Netcore.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.Netcore.csproj
index ed7dc8059317..6fa4ff30ba32 100644
--- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.Netcore.csproj
+++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.Netcore.csproj
@@ -42,6 +42,7 @@
+
diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj
index 2f13ff479537..c7b8e0a926ab 100644
--- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj
+++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj
@@ -192,6 +192,10 @@
{3819d8a7-c62c-4c47-8ddd-0332d9ce1252}
Commands.ResourceManager.Common
+
+ {1338F7AE-7111-4ED3-8916-2D0FECC876F4}
+ Commands.Common.Network
+
diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Models/PSWorkspace.cs b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Models/PSWorkspace.cs
index d16ddd6c9b60..7d5dd65aae1f 100644
--- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Models/PSWorkspace.cs
+++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Models/PSWorkspace.cs
@@ -15,10 +15,11 @@
using Microsoft.Azure.Management.OperationalInsights.Models;
using System;
using System.Collections.Generic;
+using Microsoft.Azure.Management.Internal.Network.Common;
namespace Microsoft.Azure.Commands.OperationalInsights.Models
{
- public class PSWorkspace
+ public class PSWorkspace: IOperationalInsightWorkspace
{
public PSWorkspace()
{
diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Commands.RecoveryServices.Backup.Test.csproj b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Commands.RecoveryServices.Backup.Test.csproj
index 45b4316528ad..e0e7679397a7 100644
--- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Commands.RecoveryServices.Backup.Test.csproj
+++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Commands.RecoveryServices.Backup.Test.csproj
@@ -44,8 +44,8 @@
..\..\..\packages\Microsoft.Azure.Management.Compute.18.0.0\lib\net452\Microsoft.Azure.Management.Compute.dll
True
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
False
diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/packages.config b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/packages.config
index 354a4db4a038..82cc6db7e237 100644
--- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/packages.config
+++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/packages.config
@@ -4,7 +4,7 @@
-
+
diff --git a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/Commands.ServiceFabric.Test.csproj b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/Commands.ServiceFabric.Test.csproj
index a11c82806f07..91e2a6ce5cbb 100644
--- a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/Commands.ServiceFabric.Test.csproj
+++ b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/Commands.ServiceFabric.Test.csproj
@@ -80,7 +80,7 @@
True
- ..\..\..\packages\Microsoft.Azure.Management.Network.15.1.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
..\..\..\packages\Microsoft.Azure.Management.Resources.2.20.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll
diff --git a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/packages.config b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/packages.config
index a72d100716bb..d8d34f9bb70f 100644
--- a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/packages.config
+++ b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric.Test/packages.config
@@ -8,7 +8,7 @@
-
+
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
index 5f75002db09e..da5f051d9f06 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
@@ -73,8 +73,8 @@
..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll
True
-
- ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.0-preview\lib\net452\Microsoft.Azure.Management.Network.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Network.19.0.1-preview\lib\net452\Microsoft.Azure.Management.Network.dll
False
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config
index 56ce00d3ca21..6b6fd21aa187 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config
@@ -6,7 +6,7 @@
-
+
diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.nupkg
new file mode 100644
index 000000000000..ec62d2dd641b
Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.nupkg differ
diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.symbols.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.symbols.nupkg
new file mode 100644
index 000000000000..e4fcc8ed0642
Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Network.19.0.1-preview.symbols.nupkg differ
diff --git a/tools/StaticAnalysis/Exceptions/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/SignatureIssues.csv
index ef412b2da89f..5b11c2f88f73 100644
--- a/tools/StaticAnalysis/Exceptions/SignatureIssues.csv
+++ b/tools/StaticAnalysis/Exceptions/SignatureIssues.csv
@@ -1,4 +1,5 @@
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
+"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzureRmNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzureRmNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name."
"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Aks\Microsoft.Azure.Commands.Aks.dll","Microsoft.Azure.Commands.Aks.GetAzureRmAks","Get-AzureRmAks","1","8400","Get-AzureRmAks uses the noun 'AzureRmAks', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name."
"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Aks\Microsoft.Azure.Commands.Aks.dll","Microsoft.Azure.Commands.Aks.NewAzureRmAks","New-AzureRmAks","1","8400","New-AzureRmAks uses the noun 'AzureRmAks', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name."
"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Aks\Microsoft.Azure.Commands.Aks.dll","Microsoft.Azure.Commands.Aks.RemoveAzureRmAks","Remove-AzureRmAks","1","8400","Remove-AzureRmAks uses the noun 'AzureRmAks', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name."
@@ -3257,4 +3258,4 @@
"C:\azure-powershell\src\Package\Debug\Storage\Azure.Storage\Microsoft.WindowsAzure.Commands.Storage.dll","Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.NewAzureStorageContainerSasTokenCommand","New-AzureStorageContainerSASToken","1","8510","Cmdlet 'New-AzureStorageContainerSASToken' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."
"C:\azure-powershell\src\Package\Debug\Storage\Azure.Storage\Microsoft.WindowsAzure.Commands.Storage.dll","Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.NewAzureStorageContainerStoredAccessPolicyCommand","New-AzureStorageContainerStoredAccessPolicy","1","8100","New-AzureStorageContainerStoredAccessPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzureRmVpnClientIpsecPolicy","1","8100","New-AzureRmVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzureRmVpnClientIpsecParameter","1","8100","New-AzureRmVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
\ No newline at end of file
+"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzureRmVpnClientIpsecParameter","1","8100","New-AzureRmVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"