diff --git a/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperations.cs index 3436469cd08f..cd4335b80f8f 100644 --- a/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs index 7b54eb48bdbb..1fbd138588e7 100644 --- a/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperations.cs index d85634c5d21d..5e9c0cd9ed97 100644 --- a/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperationsExtensions.cs index 8df1bd128e11..6e2c11aaada0 100644 --- a/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/BgpServiceCommunitiesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperations.cs new file mode 100644 index 000000000000..fff3bf789266 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DefaultSecurityRulesOperations operations. + /// + internal partial class DefaultSecurityRulesOperations : IServiceOperations, IDefaultSecurityRulesOperations + { + /// + /// Initializes a new instance of the DefaultSecurityRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal DefaultSecurityRulesOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (networkSecurityGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "networkSecurityGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("networkSecurityGroupName", networkSecurityGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{networkSecurityGroupName}", System.Uri.EscapeDataString(networkSecurityGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get the specified default network security rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The name of the default security rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string defaultSecurityRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (networkSecurityGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "networkSecurityGroupName"); + } + if (defaultSecurityRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "defaultSecurityRuleName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("networkSecurityGroupName", networkSecurityGroupName); + tracingParameters.Add("defaultSecurityRuleName", defaultSecurityRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules/{defaultSecurityRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{networkSecurityGroupName}", System.Uri.EscapeDataString(networkSecurityGroupName)); + _url = _url.Replace("{defaultSecurityRuleName}", System.Uri.EscapeDataString(defaultSecurityRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperationsExtensions.cs new file mode 100644 index 000000000000..380ce564fd9d --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/DefaultSecurityRulesOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for DefaultSecurityRulesOperations. + /// + public static partial class DefaultSecurityRulesOperationsExtensions + { + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + public static IPage List(this IDefaultSecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName) + { + return operations.ListAsync(resourceGroupName, networkSecurityGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IDefaultSecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, networkSecurityGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get the specified default network security rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The name of the default security rule. + /// + public static SecurityRule Get(this IDefaultSecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName, string defaultSecurityRuleName) + { + return operations.GetAsync(resourceGroupName, networkSecurityGroupName, defaultSecurityRuleName).GetAwaiter().GetResult(); + } + + /// + /// Get the specified default network security rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The name of the default security rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IDefaultSecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName, string defaultSecurityRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, networkSecurityGroupName, defaultSecurityRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IDefaultSecurityRulesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IDefaultSecurityRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 184c0d3c8168..fc7af7520198 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperationsExtensions.cs index 59a66d34b997..527811fd06fe 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index ee18cb476eba..8a2e5c98faa9 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperationsExtensions.cs index dad2d5c55d77..ed138c6a3659 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitPeeringsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 1f6f54c0494e..a25fd3db5c83 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperationsExtensions.cs index e87e17578023..6600d1921394 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteCircuitsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index 1615be8eddaa..015fa308c582 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperationsExtensions.cs index 2e9fbc1b3137..9f3901ae1344 100644 --- a/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/ExpressRouteServiceProvidersOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IApplicationGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/IApplicationGatewaysOperations.cs index eef1cb47a1e5..476edc4919ce 100644 --- a/src/SDKs/Network/Management.Network/Generated/IApplicationGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IApplicationGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IBgpServiceCommunitiesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IBgpServiceCommunitiesOperations.cs index 77eb93d72a9e..7564fb41fb61 100644 --- a/src/SDKs/Network/Management.Network/Generated/IBgpServiceCommunitiesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IBgpServiceCommunitiesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IDefaultSecurityRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IDefaultSecurityRulesOperations.cs new file mode 100644 index 000000000000..f5829cd0a5e1 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/IDefaultSecurityRulesOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DefaultSecurityRulesOperations operations. + /// + public partial interface IDefaultSecurityRulesOperations + { + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get the specified default network security rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network security group. + /// + /// + /// The name of the default security rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string defaultSecurityRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all default security rules in a network security group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitAuthorizationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitAuthorizationsOperations.cs index 222f9f7e5d01..482afbf68e4c 100644 --- a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitAuthorizationsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitPeeringsOperations.cs b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitPeeringsOperations.cs index 65f2e584a994..8fd22aec6192 100644 --- a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitPeeringsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitPeeringsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitsOperations.cs b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitsOperations.cs index f58f8fdc0435..05004088d3fe 100644 --- a/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IExpressRouteCircuitsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IExpressRouteServiceProvidersOperations.cs b/src/SDKs/Network/Management.Network/Generated/IExpressRouteServiceProvidersOperations.cs index af5430ea0dfa..dafe696bdaf4 100644 --- a/src/SDKs/Network/Management.Network/Generated/IExpressRouteServiceProvidersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IExpressRouteServiceProvidersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IInboundNatRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IInboundNatRulesOperations.cs new file mode 100644 index 000000000000..17685bfe0da5 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/IInboundNatRulesOperations.cs @@ -0,0 +1,219 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// InboundNatRulesOperations operations. + /// + public partial interface IInboundNatRulesOperations + { + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Expands referenced resources. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancerBackendAddressPoolsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerBackendAddressPoolsOperations.cs new file mode 100644 index 000000000000..d4228ba35a4e --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerBackendAddressPoolsOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerBackendAddressPoolsOperations operations. + /// + public partial interface ILoadBalancerBackendAddressPoolsOperations + { + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets load balancer backend address pool. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the backend address pool. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string backendAddressPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancerFrontendIPConfigurationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerFrontendIPConfigurationsOperations.cs new file mode 100644 index 000000000000..9eaee07bff8c --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerFrontendIPConfigurationsOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerFrontendIPConfigurationsOperations operations. + /// + public partial interface ILoadBalancerFrontendIPConfigurationsOperations + { + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets load balancer frontend IP configuration. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the frontend IP configuration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string frontendIPConfigurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancerLoadBalancingRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerLoadBalancingRulesOperations.cs new file mode 100644 index 000000000000..6f8bab0b8e50 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerLoadBalancingRulesOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerLoadBalancingRulesOperations operations. + /// + public partial interface ILoadBalancerLoadBalancingRulesOperations + { + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified load balancer load balancing rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the load balancing rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string loadBalancingRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancerNetworkInterfacesOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerNetworkInterfacesOperations.cs new file mode 100644 index 000000000000..f13cc0e1d48b --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerNetworkInterfacesOperations.cs @@ -0,0 +1,74 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerNetworkInterfacesOperations operations. + /// + public partial interface ILoadBalancerNetworkInterfacesOperations + { + /// + /// Gets associated load balancer network interfaces. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets associated load balancer network interfaces. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancerProbesOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerProbesOperations.cs new file mode 100644 index 000000000000..1d1e8c17c46f --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancerProbesOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerProbesOperations operations. + /// + public partial interface ILoadBalancerProbesOperations + { + /// + /// Gets all the load balancer probes. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets load balancer probe. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the probe. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string probeName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the load balancer probes. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/ILoadBalancersOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILoadBalancersOperations.cs index f0fffc2d8a1a..dbf07dadb100 100644 --- a/src/SDKs/Network/Management.Network/Generated/ILoadBalancersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ILoadBalancersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ILocalNetworkGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/ILocalNetworkGatewaysOperations.cs index fe2e1a8614e2..ecfd14b1431f 100644 --- a/src/SDKs/Network/Management.Network/Generated/ILocalNetworkGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ILocalNetworkGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/INetworkInterfaceIPConfigurationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/INetworkInterfaceIPConfigurationsOperations.cs new file mode 100644 index 000000000000..801ccaaf90e8 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/INetworkInterfaceIPConfigurationsOperations.cs @@ -0,0 +1,102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// NetworkInterfaceIPConfigurationsOperations operations. + /// + public partial interface INetworkInterfaceIPConfigurationsOperations + { + /// + /// Get all ip configurations in a network interface + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified network interface ip configuration. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The name of the ip configuration name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, string ipConfigurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all ip configurations in a network interface + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/IAvailablePrivateAccessServicesOperations.cs b/src/SDKs/Network/Management.Network/Generated/INetworkInterfaceLoadBalancersOperations.cs similarity index 68% rename from src/SDKs/Network/Management.Network/Generated/IAvailablePrivateAccessServicesOperations.cs rename to src/SDKs/Network/Management.Network/Generated/INetworkInterfaceLoadBalancersOperations.cs index 385246e3d9a7..292c637f7055 100644 --- a/src/SDKs/Network/Management.Network/Generated/IAvailablePrivateAccessServicesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/INetworkInterfaceLoadBalancersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -19,15 +19,18 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; /// - /// AvailablePrivateAccessServicesOperations operations. + /// NetworkInterfaceLoadBalancersOperations operations. /// - public partial interface IAvailablePrivateAccessServicesOperations + public partial interface INetworkInterfaceLoadBalancersOperations { /// - /// List what values of private access services are available for use. + /// Get all load balancers in a network interface /// - /// - /// The location to check available private access values. + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. /// /// /// The headers that will be added to request. @@ -44,9 +47,9 @@ public partial interface IAvailablePrivateAccessServicesOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List what values of private access services are available for use. + /// Get all load balancers in a network interface /// /// /// The NextLink from the previous successful call to List operation. @@ -66,6 +69,6 @@ public partial interface IAvailablePrivateAccessServicesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Network/Management.Network/Generated/INetworkInterfacesOperations.cs b/src/SDKs/Network/Management.Network/Generated/INetworkInterfacesOperations.cs index 95ac75fe7984..f0c4fbfd2c56 100644 --- a/src/SDKs/Network/Management.Network/Generated/INetworkInterfacesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/INetworkInterfacesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -167,7 +167,7 @@ public partial interface INetworkInterfacesOperations /// /// Thrown when a required parameter is null /// - Task> GetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> GetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all network security groups applied to a network interface. /// @@ -192,7 +192,7 @@ public partial interface INetworkInterfacesOperations /// /// Thrown when a required parameter is null /// - Task> ListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about all network interfaces in a virtual machine /// in a virtual machine scale set. @@ -356,7 +356,7 @@ public partial interface INetworkInterfacesOperations /// /// Thrown when a required parameter is null /// - Task> BeginGetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> BeginGetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all network security groups applied to a network interface. /// @@ -381,7 +381,7 @@ public partial interface INetworkInterfacesOperations /// /// Thrown when a required parameter is null /// - Task> BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all network interfaces in a subscription. /// @@ -427,6 +427,50 @@ public partial interface INetworkInterfacesOperations /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> GetEffectiveRouteTableNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets information about all network interfaces in a virtual machine /// in a virtual machine scale set. /// @@ -471,5 +515,49 @@ public partial interface INetworkInterfacesOperations /// Thrown when a required parameter is null /// Task>> ListVirtualMachineScaleSetNetworkInterfacesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> BeginGetEffectiveRouteTableNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> BeginListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Network/Management.Network/Generated/INetworkManagementClient.cs b/src/SDKs/Network/Management.Network/Generated/INetworkManagementClient.cs index 04892405b101..db5203d1f1ab 100644 --- a/src/SDKs/Network/Management.Network/Generated/INetworkManagementClient.cs +++ b/src/SDKs/Network/Management.Network/Generated/INetworkManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; /// - /// Composite Swagger for Network Client + /// Network Client /// public partial interface INetworkManagementClient : System.IDisposable { @@ -99,11 +99,51 @@ public partial interface INetworkManagementClient : System.IDisposable /// ILoadBalancersOperations LoadBalancers { get; } + /// + /// Gets the ILoadBalancerBackendAddressPoolsOperations. + /// + ILoadBalancerBackendAddressPoolsOperations LoadBalancerBackendAddressPools { get; } + + /// + /// Gets the ILoadBalancerFrontendIPConfigurationsOperations. + /// + ILoadBalancerFrontendIPConfigurationsOperations LoadBalancerFrontendIPConfigurations { get; } + + /// + /// Gets the IInboundNatRulesOperations. + /// + IInboundNatRulesOperations InboundNatRules { get; } + + /// + /// Gets the ILoadBalancerLoadBalancingRulesOperations. + /// + ILoadBalancerLoadBalancingRulesOperations LoadBalancerLoadBalancingRules { get; } + + /// + /// Gets the ILoadBalancerNetworkInterfacesOperations. + /// + ILoadBalancerNetworkInterfacesOperations LoadBalancerNetworkInterfaces { get; } + + /// + /// Gets the ILoadBalancerProbesOperations. + /// + ILoadBalancerProbesOperations LoadBalancerProbes { get; } + /// /// Gets the INetworkInterfacesOperations. /// INetworkInterfacesOperations NetworkInterfaces { get; } + /// + /// Gets the INetworkInterfaceIPConfigurationsOperations. + /// + INetworkInterfaceIPConfigurationsOperations NetworkInterfaceIPConfigurations { get; } + + /// + /// Gets the INetworkInterfaceLoadBalancersOperations. + /// + INetworkInterfaceLoadBalancersOperations NetworkInterfaceLoadBalancers { get; } + /// /// Gets the INetworkSecurityGroupsOperations. /// @@ -114,6 +154,11 @@ public partial interface INetworkManagementClient : System.IDisposable /// ISecurityRulesOperations SecurityRules { get; } + /// + /// Gets the IDefaultSecurityRulesOperations. + /// + IDefaultSecurityRulesOperations DefaultSecurityRules { get; } + /// /// Gets the INetworkWatchersOperations. /// @@ -189,11 +234,6 @@ public partial interface INetworkManagementClient : System.IDisposable /// ILocalNetworkGatewaysOperations LocalNetworkGateways { get; } - /// - /// Gets the IAvailablePrivateAccessServicesOperations. - /// - IAvailablePrivateAccessServicesOperations AvailablePrivateAccessServices { get; } - /// /// Checks whether a domain name in the cloudapp.net zone is available /// for use. diff --git a/src/SDKs/Network/Management.Network/Generated/INetworkSecurityGroupsOperations.cs b/src/SDKs/Network/Management.Network/Generated/INetworkSecurityGroupsOperations.cs index ea7c7fdccfa1..d7d55a1d4ecd 100644 --- a/src/SDKs/Network/Management.Network/Generated/INetworkSecurityGroupsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/INetworkSecurityGroupsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/INetworkWatchersOperations.cs b/src/SDKs/Network/Management.Network/Generated/INetworkWatchersOperations.cs index 2fda972138eb..b8edfa98b034 100644 --- a/src/SDKs/Network/Management.Network/Generated/INetworkWatchersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/INetworkWatchersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IPacketCapturesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IPacketCapturesOperations.cs index b7d06305adab..142bb4a974dd 100644 --- a/src/SDKs/Network/Management.Network/Generated/IPacketCapturesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IPacketCapturesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IPublicIpAddressesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IPublicIpAddressesOperations.cs index 4dd9f3b51ff8..444bd02df5d9 100644 --- a/src/SDKs/Network/Management.Network/Generated/IPublicIpAddressesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IPublicIpAddressesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IRouteFilterRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IRouteFilterRulesOperations.cs index aecc5aedbf7e..016e1f117b2d 100644 --- a/src/SDKs/Network/Management.Network/Generated/IRouteFilterRulesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IRouteFilterRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IRouteFiltersOperations.cs b/src/SDKs/Network/Management.Network/Generated/IRouteFiltersOperations.cs index 32297cc8524c..4f18c01ce543 100644 --- a/src/SDKs/Network/Management.Network/Generated/IRouteFiltersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IRouteFiltersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IRouteTablesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IRouteTablesOperations.cs index acb32188c801..d20794390799 100644 --- a/src/SDKs/Network/Management.Network/Generated/IRouteTablesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IRouteTablesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IRoutesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IRoutesOperations.cs index 8de2ccf70854..a0494a4bd552 100644 --- a/src/SDKs/Network/Management.Network/Generated/IRoutesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IRoutesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ISecurityRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/ISecurityRulesOperations.cs index 86d3dd152f26..5105d37d0e14 100644 --- a/src/SDKs/Network/Management.Network/Generated/ISecurityRulesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ISecurityRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/ISubnetsOperations.cs b/src/SDKs/Network/Management.Network/Generated/ISubnetsOperations.cs index 7e93d541f0b2..a1ea75499c12 100644 --- a/src/SDKs/Network/Management.Network/Generated/ISubnetsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/ISubnetsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IUsagesOperations.cs b/src/SDKs/Network/Management.Network/Generated/IUsagesOperations.cs index 83f8daf038ec..b88c5582c550 100644 --- a/src/SDKs/Network/Management.Network/Generated/IUsagesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IUsagesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewayConnectionsOperations.cs b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewayConnectionsOperations.cs index 75cadcbe2840..1dcb9421de75 100644 --- a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewayConnectionsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewayConnectionsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewaysOperations.cs index 0617b7870797..c8400c5f1c59 100644 --- a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -123,6 +123,31 @@ public partial interface IVirtualNetworkGatewaysOperations /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual network gateway. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListConnectionsWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Resets the primary of the virtual network gateway in the specified /// resource group. /// @@ -546,5 +571,27 @@ public partial interface IVirtualNetworkGatewaysOperations /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListConnectionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkPeeringsOperations.cs b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkPeeringsOperations.cs index 3902831e10e0..68cb66b13199 100644 --- a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkPeeringsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworkPeeringsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworksOperations.cs b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworksOperations.cs index ffe1da4d6ee9..e240ecfd15e4 100644 --- a/src/SDKs/Network/Management.Network/Generated/IVirtualNetworksOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/IVirtualNetworksOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperations.cs new file mode 100644 index 000000000000..954cca7637da --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperations.cs @@ -0,0 +1,1102 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// InboundNatRulesOperations operations. + /// + internal partial class InboundNatRulesOperations : IServiceOperations, IInboundNatRulesOperations + { + /// + /// Initializes a new instance of the InboundNatRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal InboundNatRulesOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Expands referenced resources. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (inboundNatRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "inboundNatRuleName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("inboundNatRuleName", inboundNatRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{inboundNatRuleName}", System.Uri.EscapeDataString(inboundNatRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, inboundNatRuleParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (inboundNatRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "inboundNatRuleName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("inboundNatRuleName", inboundNatRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{inboundNatRuleName}", System.Uri.EscapeDataString(inboundNatRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 202 && (int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (inboundNatRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "inboundNatRuleName"); + } + if (inboundNatRuleParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "inboundNatRuleParameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("inboundNatRuleName", inboundNatRuleName); + tracingParameters.Add("inboundNatRuleParameters", inboundNatRuleParameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{inboundNatRuleName}", System.Uri.EscapeDataString(inboundNatRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(inboundNatRuleParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(inboundNatRuleParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201 && (int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperationsExtensions.cs new file mode 100644 index 000000000000..20b2493fc433 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/InboundNatRulesOperationsExtensions.cs @@ -0,0 +1,341 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for InboundNatRulesOperations. + /// + public static partial class InboundNatRulesOperationsExtensions + { + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + public static IPage List(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName) + { + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + public static void Delete(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName) + { + operations.DeleteAsync(resourceGroupName, loadBalancerName, inboundNatRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Expands referenced resources. + /// + public static InboundNatRule Get(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, string expand = default(string)) + { + return operations.GetAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Expands referenced resources. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + public static InboundNatRule CreateOrUpdate(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, inboundNatRuleParameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, inboundNatRuleParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + public static void BeginDelete(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName) + { + operations.BeginDeleteAsync(resourceGroupName, loadBalancerName, inboundNatRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + public static InboundNatRule BeginCreateOrUpdate(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, inboundNatRuleParameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a load balancer inbound nat rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the inbound nat rule. + /// + /// + /// Parameters supplied to the create or update inbound nat rule operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IInboundNatRulesOperations operations, string resourceGroupName, string loadBalancerName, string inboundNatRuleName, InboundNatRule inboundNatRuleParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, loadBalancerName, inboundNatRuleName, inboundNatRuleParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IInboundNatRulesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the inbound nat rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IInboundNatRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperations.cs new file mode 100644 index 000000000000..a335d1c993d1 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerBackendAddressPoolsOperations operations. + /// + internal partial class LoadBalancerBackendAddressPoolsOperations : IServiceOperations, ILoadBalancerBackendAddressPoolsOperations + { + /// + /// Initializes a new instance of the LoadBalancerBackendAddressPoolsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LoadBalancerBackendAddressPoolsOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets load balancer backend address pool. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the backend address pool. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string backendAddressPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (backendAddressPoolName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "backendAddressPoolName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("backendAddressPoolName", backendAddressPoolName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{backendAddressPoolName}", System.Uri.EscapeDataString(backendAddressPoolName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperationsExtensions.cs new file mode 100644 index 000000000000..6558019a3e0d --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerBackendAddressPoolsOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LoadBalancerBackendAddressPoolsOperations. + /// + public static partial class LoadBalancerBackendAddressPoolsOperationsExtensions + { + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + public static IPage List(this ILoadBalancerBackendAddressPoolsOperations operations, string resourceGroupName, string loadBalancerName) + { + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILoadBalancerBackendAddressPoolsOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets load balancer backend address pool. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the backend address pool. + /// + public static BackendAddressPool Get(this ILoadBalancerBackendAddressPoolsOperations operations, string resourceGroupName, string loadBalancerName, string backendAddressPoolName) + { + return operations.GetAsync(resourceGroupName, loadBalancerName, backendAddressPoolName).GetAwaiter().GetResult(); + } + + /// + /// Gets load balancer backend address pool. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the backend address pool. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILoadBalancerBackendAddressPoolsOperations operations, string resourceGroupName, string loadBalancerName, string backendAddressPoolName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, loadBalancerName, backendAddressPoolName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILoadBalancerBackendAddressPoolsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer backed address pools. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILoadBalancerBackendAddressPoolsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperations.cs new file mode 100644 index 000000000000..2b46d7404caa --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerFrontendIPConfigurationsOperations operations. + /// + internal partial class LoadBalancerFrontendIPConfigurationsOperations : IServiceOperations, ILoadBalancerFrontendIPConfigurationsOperations + { + /// + /// Initializes a new instance of the LoadBalancerFrontendIPConfigurationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LoadBalancerFrontendIPConfigurationsOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets load balancer frontend IP configuration. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the frontend IP configuration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string frontendIPConfigurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (frontendIPConfigurationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "frontendIPConfigurationName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("frontendIPConfigurationName", frontendIPConfigurationName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations/{frontendIPConfigurationName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{frontendIPConfigurationName}", System.Uri.EscapeDataString(frontendIPConfigurationName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperationsExtensions.cs new file mode 100644 index 000000000000..fb3a9219d236 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerFrontendIPConfigurationsOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LoadBalancerFrontendIPConfigurationsOperations. + /// + public static partial class LoadBalancerFrontendIPConfigurationsOperationsExtensions + { + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + public static IPage List(this ILoadBalancerFrontendIPConfigurationsOperations operations, string resourceGroupName, string loadBalancerName) + { + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILoadBalancerFrontendIPConfigurationsOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets load balancer frontend IP configuration. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the frontend IP configuration. + /// + public static FrontendIPConfiguration Get(this ILoadBalancerFrontendIPConfigurationsOperations operations, string resourceGroupName, string loadBalancerName, string frontendIPConfigurationName) + { + return operations.GetAsync(resourceGroupName, loadBalancerName, frontendIPConfigurationName).GetAwaiter().GetResult(); + } + + /// + /// Gets load balancer frontend IP configuration. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the frontend IP configuration. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILoadBalancerFrontendIPConfigurationsOperations operations, string resourceGroupName, string loadBalancerName, string frontendIPConfigurationName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, loadBalancerName, frontendIPConfigurationName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILoadBalancerFrontendIPConfigurationsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer frontend IP configurations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILoadBalancerFrontendIPConfigurationsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperations.cs new file mode 100644 index 000000000000..8cbf6dc9c3b1 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerLoadBalancingRulesOperations operations. + /// + internal partial class LoadBalancerLoadBalancingRulesOperations : IServiceOperations, ILoadBalancerLoadBalancingRulesOperations + { + /// + /// Initializes a new instance of the LoadBalancerLoadBalancingRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LoadBalancerLoadBalancingRulesOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the specified load balancer load balancing rule. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the load balancing rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string loadBalancingRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (loadBalancingRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancingRuleName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("loadBalancingRuleName", loadBalancingRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{loadBalancingRuleName}", System.Uri.EscapeDataString(loadBalancingRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperationsExtensions.cs new file mode 100644 index 000000000000..9714f60a2692 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerLoadBalancingRulesOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LoadBalancerLoadBalancingRulesOperations. + /// + public static partial class LoadBalancerLoadBalancingRulesOperationsExtensions + { + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + public static IPage List(this ILoadBalancerLoadBalancingRulesOperations operations, string resourceGroupName, string loadBalancerName) + { + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILoadBalancerLoadBalancingRulesOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the specified load balancer load balancing rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the load balancing rule. + /// + public static LoadBalancingRule Get(this ILoadBalancerLoadBalancingRulesOperations operations, string resourceGroupName, string loadBalancerName, string loadBalancingRuleName) + { + return operations.GetAsync(resourceGroupName, loadBalancerName, loadBalancingRuleName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified load balancer load balancing rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the load balancing rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILoadBalancerLoadBalancingRulesOperations operations, string resourceGroupName, string loadBalancerName, string loadBalancingRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, loadBalancerName, loadBalancingRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILoadBalancerLoadBalancingRulesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancing rules in a load balancer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILoadBalancerLoadBalancingRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperations.cs similarity index 87% rename from src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperations.cs rename to src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperations.cs index 94b774a92c4b..fb24367f357a 100644 --- a/src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; /// - /// AvailablePrivateAccessServicesOperations operations. + /// LoadBalancerNetworkInterfacesOperations operations. /// - internal partial class AvailablePrivateAccessServicesOperations : IServiceOperations, IAvailablePrivateAccessServicesOperations + internal partial class LoadBalancerNetworkInterfacesOperations : IServiceOperations, ILoadBalancerNetworkInterfacesOperations { /// - /// Initializes a new instance of the AvailablePrivateAccessServicesOperations class. + /// Initializes a new instance of the LoadBalancerNetworkInterfacesOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class AvailablePrivateAccessServicesOperations : IServiceOperat /// /// Thrown when a required parameter is null /// - internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client) + internal LoadBalancerNetworkInterfacesOperations(NetworkManagementClient client) { if (client == null) { @@ -51,10 +51,13 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client public NetworkManagementClient Client { get; private set; } /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// - /// - /// The location to check available private access values. + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. /// /// /// Headers that will be added to request. @@ -77,11 +80,15 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); } if (Client.SubscriptionId == null) { @@ -95,15 +102,17 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/privateAccessServices").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/networkInterfaces").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -203,7 +212,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -216,7 +225,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -236,7 +245,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client } /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// /// /// The NextLink from the previous successful call to List operation. @@ -262,7 +271,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -376,7 +385,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -389,7 +398,7 @@ internal AvailablePrivateAccessServicesOperations(NetworkManagementClient client _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperationsExtensions.cs similarity index 56% rename from src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperationsExtensions.cs rename to src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperationsExtensions.cs index 0cc22d7b3887..3e5f161cc614 100644 --- a/src/SDKs/Network/Management.Network/Generated/AvailablePrivateAccessServicesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerNetworkInterfacesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,46 +17,52 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; /// - /// Extension methods for AvailablePrivateAccessServicesOperations. + /// Extension methods for LoadBalancerNetworkInterfacesOperations. /// - public static partial class AvailablePrivateAccessServicesOperationsExtensions + public static partial class LoadBalancerNetworkInterfacesOperationsExtensions { /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// /// /// The operations group for this extension method. /// - /// - /// The location to check available private access values. + /// + /// The name of the resource group. /// - public static IPage List(this IAvailablePrivateAccessServicesOperations operations, string location) + /// + /// The name of the load balancer. + /// + public static IPage List(this ILoadBalancerNetworkInterfacesOperations operations, string resourceGroupName, string loadBalancerName) { - return operations.ListAsync(location).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); } /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// /// /// The operations group for this extension method. /// - /// - /// The location to check available private access values. + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IAvailablePrivateAccessServicesOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this ILoadBalancerNetworkInterfacesOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// /// /// The operations group for this extension method. @@ -64,13 +70,13 @@ public static IPage List(this IAvailablePrivateAcces /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IAvailablePrivateAccessServicesOperations operations, string nextPageLink) + public static IPage ListNext(this ILoadBalancerNetworkInterfacesOperations operations, string nextPageLink) { return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// List what values of private access services are available for use. + /// Gets associated load balancer network interfaces. /// /// /// The operations group for this extension method. @@ -81,7 +87,7 @@ public static IPage ListNext(this IAvailablePrivateA /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IAvailablePrivateAccessServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this ILoadBalancerNetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperations.cs new file mode 100644 index 000000000000..97591f245a30 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LoadBalancerProbesOperations operations. + /// + internal partial class LoadBalancerProbesOperations : IServiceOperations, ILoadBalancerProbesOperations + { + /// + /// Initializes a new instance of the LoadBalancerProbesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LoadBalancerProbesOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Gets all the load balancer probes. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets load balancer probe. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the probe. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, string probeName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (loadBalancerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "loadBalancerName"); + } + if (probeName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "probeName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("loadBalancerName", loadBalancerName); + tracingParameters.Add("probeName", probeName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{loadBalancerName}", System.Uri.EscapeDataString(loadBalancerName)); + _url = _url.Replace("{probeName}", System.Uri.EscapeDataString(probeName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all the load balancer probes. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperationsExtensions.cs new file mode 100644 index 000000000000..7941b431f086 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancerProbesOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LoadBalancerProbesOperations. + /// + public static partial class LoadBalancerProbesOperationsExtensions + { + /// + /// Gets all the load balancer probes. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + public static IPage List(this ILoadBalancerProbesOperations operations, string resourceGroupName, string loadBalancerName) + { + return operations.ListAsync(resourceGroupName, loadBalancerName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer probes. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILoadBalancerProbesOperations operations, string resourceGroupName, string loadBalancerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, loadBalancerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets load balancer probe. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the probe. + /// + public static Probe Get(this ILoadBalancerProbesOperations operations, string resourceGroupName, string loadBalancerName, string probeName) + { + return operations.GetAsync(resourceGroupName, loadBalancerName, probeName).GetAwaiter().GetResult(); + } + + /// + /// Gets load balancer probe. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the load balancer. + /// + /// + /// The name of the probe. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILoadBalancerProbesOperations operations, string resourceGroupName, string loadBalancerName, string probeName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, loadBalancerName, probeName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all the load balancer probes. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILoadBalancerProbesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the load balancer probes. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILoadBalancerProbesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperations.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperations.cs index 2f13c4aaaee8..66f995dbb9b4 100644 --- a/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperationsExtensions.cs index 593634aebc03..897b5517a305 100644 --- a/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/LoadBalancersOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 9a5537cc17e6..62530e68fbd4 100644 --- a/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperationsExtensions.cs index 33d4e52ecdfe..fa5e7831e34e 100644 --- a/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/LocalNetworkGatewaysOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Access.cs b/src/SDKs/Network/Management.Network/Generated/Models/Access.cs index bb622164722a..d21699dfcbf9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Access.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Access.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/AddressSpace.cs b/src/SDKs/Network/Management.Network/Generated/Models/AddressSpace.cs index 9662b80939d9..a78ad0dd92cd 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/AddressSpace.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/AddressSpace.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGateway.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGateway.cs index 852b0b38e9f5..61dcb7fd16ed 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGateway.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGateway.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAuthenticationCertificate.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAuthenticationCertificate.cs index 3d40714d1bf1..2c8f15cca456 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAuthenticationCertificate.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAuthenticationCertificate.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableSslOptions.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableSslOptions.cs index aa544b906c1f..8dbd2a074d88 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableSslOptions.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableSslOptions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs index 73add6ae4e8c..76b3eb12e9ff 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddress.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddress.cs index 4f18ef0bb676..ac5f6567744e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddress.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddress.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddressPool.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddressPool.cs index 68e9523cf246..d8edb3ea14cd 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddressPool.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendAddressPool.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealth.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealth.cs index f3490581fbbd..974b1e3e93f9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealth.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealth.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs index 5861c0819340..6b4d2390a386 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthPool.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthPool.cs index ec201189b067..620a13791d41 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthPool.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthPool.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs index 54355b2d8603..b765e8edfa67 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs index 0acb1446fc2c..7a7cffa5f326 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs index 5d1a955a1985..a97c252e409b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs index be518f100bd9..56de82db76a0 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs index 405cdb598682..c86a4623ebd4 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs index cea54e32b587..7484ed8bd168 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallMode.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallMode.cs index c09da79fc4a4..757e6a5f1273 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallMode.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallMode.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs index 39d6f320d9b2..e7191cceb453 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs index 9a83895eb794..b3138bf195d5 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs index e411b658c250..11979a2e234a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs index f40dbb1858b5..42e5dbeb3e63 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendPort.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendPort.cs index e2c32ad7bd79..4dc96ba2a92e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendPort.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayFrontendPort.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs index 75f768b33de7..1d1300771f81 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayIpConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayIpConfiguration.cs index e8cb7542da8a..347abb595387 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayIpConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayIpConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayOperationalState.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayOperationalState.cs index 4088f7e54538..c9bdec1d0a3b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayOperationalState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayOperationalState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayPathRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayPathRule.cs index 78874613312c..db24b58e0624 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayPathRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayPathRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbe.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbe.cs index 9ceb81f88cc6..b73ee09369c6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbe.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbe.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbeHealthResponseMatch.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbeHealthResponseMatch.cs index 377f36ca2c61..22b0ea145a3d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbeHealthResponseMatch.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProbeHealthResponseMatch.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProtocol.cs index 5ee40ebbf6c7..3208fbac04b6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectConfiguration.cs index 90af2224d685..7949fa770672 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectType.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectType.cs index aa999ad65c5c..8171a0b96a25 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRedirectType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs index 63c2790aff22..0c83e033f493 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs index b330b97e0e84..a20db081baeb 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySku.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySku.cs index 54c0d8b9c9ef..5c1136d20d0c 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySku.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySku.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySkuName.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySkuName.cs index 75e864e1a1c7..499066b7ccc6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySkuName.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySkuName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCertificate.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCertificate.cs index 742103468beb..57359300d4f7 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCertificate.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCertificate.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCipherSuite.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCipherSuite.cs index 17832e7940cb..92f357a79396 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCipherSuite.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslCipherSuite.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs index 97d9b6fc9ed8..d06b03a5fbcd 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyName.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyName.cs index feb682f3f4e6..7a856ba0689f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyName.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyType.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyType.cs index 092f87c53ea7..907700253ea7 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPolicyType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPredefinedPolicy.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPredefinedPolicy.cs index 93c2a2658ebf..1bc1c037128f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPredefinedPolicy.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslPredefinedPolicy.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslProtocol.cs index f0de3e5450cd..bba58c4440cd 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewaySslProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayTier.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayTier.cs index b08b34028223..679defe53d19 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayTier.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayTier.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayUrlPathMap.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayUrlPathMap.cs index 0e5a0d92de8b..36747df5fd69 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayUrlPathMap.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayUrlPathMap.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index 46368c22aae0..35368e632bbb 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/AssociationType.cs b/src/SDKs/Network/Management.Network/Generated/Models/AssociationType.cs index f8c00442997c..0a9687b1a494 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/AssociationType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/AssociationType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/AuthenticationMethod.cs b/src/SDKs/Network/Management.Network/Generated/Models/AuthenticationMethod.cs index 7fa3e439e9d0..7fa1d115287b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/AuthenticationMethod.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/AuthenticationMethod.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/AuthorizationUseStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/AuthorizationUseStatus.cs index ced37dfc9ab2..a8cbc7adbf4b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/AuthorizationUseStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/AuthorizationUseStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/AzureAsyncOperationResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/AzureAsyncOperationResult.cs index e2ca72b55458..82397e3e6053 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/AzureAsyncOperationResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/AzureAsyncOperationResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BGPCommunity.cs b/src/SDKs/Network/Management.Network/Generated/Models/BGPCommunity.cs index ea03bb8d34c4..267cae0d95a3 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BGPCommunity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BGPCommunity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BackendAddressPool.cs b/src/SDKs/Network/Management.Network/Generated/Models/BackendAddressPool.cs index e34234d85f0d..43eb9b601034 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BackendAddressPool.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BackendAddressPool.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerState.cs b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerState.cs index df59de7c41dd..a07143f3e87b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatus.cs index c5e8cf4a865b..32c9efab013b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatusListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatusListResult.cs index a053d15012a6..537d51299d15 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatusListResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BgpPeerStatusListResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BgpServiceCommunity.cs b/src/SDKs/Network/Management.Network/Generated/Models/BgpServiceCommunity.cs index 21da69a8bec0..7ab1a7f244e6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BgpServiceCommunity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BgpServiceCommunity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/BgpSettings.cs b/src/SDKs/Network/Management.Network/Generated/Models/BgpSettings.cs index 99201218b33b..1c8e928e3df6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/BgpSettings.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/BgpSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionResetSharedKey.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionResetSharedKey.cs index 6d222a113af8..fbd99f709a8e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionResetSharedKey.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionResetSharedKey.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionSharedKey.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionSharedKey.cs index de1dbbaa4e34..e8c71f2a3c77 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionSharedKey.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionSharedKey.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionStatus.cs index 77cc56951854..8feb74695228 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectionStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectionStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityDestination.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityDestination.cs index 0d7b15fb3dd8..8f6ca32d8678 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityDestination.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityDestination.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityHop.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityHop.cs index 0b7e1c58e4f3..08c3cc6566c7 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityHop.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityHop.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityInformation.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityInformation.cs index 802bd21093ee..f90a0bc616ad 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityInformation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityIssue.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityIssue.cs index 61f97475fc57..c3667b55d81a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityIssue.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityIssue.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityParameters.cs index 374dbb3f5349..37e0744520e5 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivityParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivitySource.cs b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivitySource.cs index cd9f134a3f61..d8a30c8045d1 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ConnectivitySource.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ConnectivitySource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/DhGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/DhGroup.cs index 55db2da8e1bd..4eaea6f9666a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/DhGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/DhGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/DhcpOptions.cs b/src/SDKs/Network/Management.Network/Generated/Models/DhcpOptions.cs index 929bb0eea512..bc802d76d0c2 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/DhcpOptions.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/DhcpOptions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Direction.cs b/src/SDKs/Network/Management.Network/Generated/Models/Direction.cs index 99ea93daded4..341a14a91d10 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Direction.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Direction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/DnsNameAvailabilityResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/DnsNameAvailabilityResult.cs index f8bdf2ab1450..fab7301dcfb8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/DnsNameAvailabilityResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/DnsNameAvailabilityResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroup.cs index feeabec8311d..ffda5a402924 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -36,13 +36,17 @@ public EffectiveNetworkSecurityGroup() /// /// The ID of network security group /// that is applied. + /// Associated resources. /// A collection of effective /// security rules. - public EffectiveNetworkSecurityGroup(SubResource networkSecurityGroup = default(SubResource), EffectiveNetworkSecurityGroupAssociation association = default(EffectiveNetworkSecurityGroupAssociation), IList effectiveSecurityRules = default(IList)) + /// Mapping of tags to list of IP Addresses + /// included within the tag. + public EffectiveNetworkSecurityGroup(SubResource networkSecurityGroup = default(SubResource), EffectiveNetworkSecurityGroupAssociation association = default(EffectiveNetworkSecurityGroupAssociation), IList effectiveSecurityRules = default(IList), IDictionary> tagMap = default(IDictionary>)) { NetworkSecurityGroup = networkSecurityGroup; Association = association; EffectiveSecurityRules = effectiveSecurityRules; + TagMap = tagMap; CustomInit(); } @@ -58,6 +62,7 @@ public EffectiveNetworkSecurityGroup() public SubResource NetworkSecurityGroup { get; set; } /// + /// Gets or sets associated resources. /// [JsonProperty(PropertyName = "association")] public EffectiveNetworkSecurityGroupAssociation Association { get; set; } @@ -68,5 +73,12 @@ public EffectiveNetworkSecurityGroup() [JsonProperty(PropertyName = "effectiveSecurityRules")] public IList EffectiveSecurityRules { get; set; } + /// + /// Gets or sets mapping of tags to list of IP Addresses included + /// within the tag. + /// + [JsonProperty(PropertyName = "tagMap")] + public IDictionary> TagMap { get; set; } + } } diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupAssociation.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupAssociation.cs index 8cc41ddc6a68..2dc0f10f98b0 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupAssociation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupAssociation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupListResult.cs deleted file mode 100644 index b602e5da19b8..000000000000 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityGroupListResult.cs +++ /dev/null @@ -1,66 +0,0 @@ -// 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 1.1.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Network.Models -{ - using Microsoft.Azure; - using Microsoft.Azure.Management; - using Microsoft.Azure.Management.Network; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Response for list effective network security groups API service call. - /// - public partial class EffectiveNetworkSecurityGroupListResult - { - /// - /// Initializes a new instance of the - /// EffectiveNetworkSecurityGroupListResult class. - /// - public EffectiveNetworkSecurityGroupListResult() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// EffectiveNetworkSecurityGroupListResult class. - /// - /// A list of effective network security - /// groups. - /// The URL to get the next set of - /// results. - public EffectiveNetworkSecurityGroupListResult(IList value = default(IList), string nextLink = default(string)) - { - Value = value; - NextLink = nextLink; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets a list of effective network security groups. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - /// - /// Gets or sets the URL to get the next set of results. - /// - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityRule.cs index 6c26cf836e4c..2d67c4b04a26 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveNetworkSecurityRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -37,15 +37,30 @@ public EffectiveNetworkSecurityRule() /// The name of the security rule specified by the /// user (if created by the user). /// The network protocol this rule applies to. - /// Possible values are: 'Tcp', 'Udp', and '*'. Possible values - /// include: 'Tcp', 'Udp', '*' + /// Possible values are: 'Tcp', 'Udp', and 'All'. Possible values + /// include: 'Tcp', 'Udp', 'All' /// The source port or range. /// The destination port or /// range. + /// The source port ranges. Expected + /// values include a single integer between 0 and 65535, a range using + /// '-' as seperator (e.g. 100-400), or an asterix (*) + /// The destination port ranges. + /// Expected values include a single integer between 0 and 65535, a + /// range using '-' as seperator (e.g. 100-400), or an asterix + /// (*) /// The source address /// prefix. /// The destination address /// prefix. + /// The source address prefixes. + /// Expected values include CIDR IP ranges, Default Tags + /// (VirtualNetwork, AureLoadBalancer, Internet), System Tags, and the + /// asterix (*). + /// The destination address + /// prefixes. Expected values include CIDR IP ranges, Default Tags + /// (VirtualNetwork, AureLoadBalancer, Internet), System Tags, and the + /// asterix (*). /// The expanded source /// address prefix. /// Expanded destination @@ -57,14 +72,18 @@ public EffectiveNetworkSecurityRule() /// The direction of the rule. Possible values /// are: 'Inbound and Outbound'. Possible values include: 'Inbound', /// 'Outbound' - public EffectiveNetworkSecurityRule(string name = default(string), string protocol = default(string), string sourcePortRange = default(string), string destinationPortRange = default(string), string sourceAddressPrefix = default(string), string destinationAddressPrefix = default(string), IList expandedSourceAddressPrefix = default(IList), IList expandedDestinationAddressPrefix = default(IList), string access = default(string), int? priority = default(int?), string direction = default(string)) + public EffectiveNetworkSecurityRule(string name = default(string), string protocol = default(string), string sourcePortRange = default(string), string destinationPortRange = default(string), IList sourcePortRanges = default(IList), IList destinationPortRanges = default(IList), string sourceAddressPrefix = default(string), string destinationAddressPrefix = default(string), IList sourceAddressPrefixes = default(IList), IList destinationAddressPrefixes = default(IList), IList expandedSourceAddressPrefix = default(IList), IList expandedDestinationAddressPrefix = default(IList), string access = default(string), int? priority = default(int?), string direction = default(string)) { Name = name; Protocol = protocol; SourcePortRange = sourcePortRange; DestinationPortRange = destinationPortRange; + SourcePortRanges = sourcePortRanges; + DestinationPortRanges = destinationPortRanges; SourceAddressPrefix = sourceAddressPrefix; DestinationAddressPrefix = destinationAddressPrefix; + SourceAddressPrefixes = sourceAddressPrefixes; + DestinationAddressPrefixes = destinationAddressPrefixes; ExpandedSourceAddressPrefix = expandedSourceAddressPrefix; ExpandedDestinationAddressPrefix = expandedDestinationAddressPrefix; Access = access; @@ -87,8 +106,8 @@ public EffectiveNetworkSecurityRule() /// /// Gets or sets the network protocol this rule applies to. Possible - /// values are: 'Tcp', 'Udp', and '*'. Possible values include: 'Tcp', - /// 'Udp', '*' + /// values are: 'Tcp', 'Udp', and 'All'. Possible values include: + /// 'Tcp', 'Udp', 'All' /// [JsonProperty(PropertyName = "protocol")] public string Protocol { get; set; } @@ -105,6 +124,22 @@ public EffectiveNetworkSecurityRule() [JsonProperty(PropertyName = "destinationPortRange")] public string DestinationPortRange { get; set; } + /// + /// Gets or sets the source port ranges. Expected values include a + /// single integer between 0 and 65535, a range using '-' as seperator + /// (e.g. 100-400), or an asterix (*) + /// + [JsonProperty(PropertyName = "sourcePortRanges")] + public IList SourcePortRanges { get; set; } + + /// + /// Gets or sets the destination port ranges. Expected values include a + /// single integer between 0 and 65535, a range using '-' as seperator + /// (e.g. 100-400), or an asterix (*) + /// + [JsonProperty(PropertyName = "destinationPortRanges")] + public IList DestinationPortRanges { get; set; } + /// /// Gets or sets the source address prefix. /// @@ -117,6 +152,22 @@ public EffectiveNetworkSecurityRule() [JsonProperty(PropertyName = "destinationAddressPrefix")] public string DestinationAddressPrefix { get; set; } + /// + /// Gets or sets the source address prefixes. Expected values include + /// CIDR IP ranges, Default Tags (VirtualNetwork, AureLoadBalancer, + /// Internet), System Tags, and the asterix (*). + /// + [JsonProperty(PropertyName = "sourceAddressPrefixes")] + public IList SourceAddressPrefixes { get; set; } + + /// + /// Gets or sets the destination address prefixes. Expected values + /// include CIDR IP ranges, Default Tags (VirtualNetwork, + /// AureLoadBalancer, Internet), System Tags, and the asterix (*). + /// + [JsonProperty(PropertyName = "destinationAddressPrefixes")] + public IList DestinationAddressPrefixes { get; set; } + /// /// Gets or sets the expanded source address prefix. /// diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRoute.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRoute.cs index ed08ff6c72ef..f6154caba4d5 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRoute.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRoute.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteListResult.cs deleted file mode 100644 index 05e1970985f5..000000000000 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteListResult.cs +++ /dev/null @@ -1,63 +0,0 @@ -// 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 1.1.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Network.Models -{ - using Microsoft.Azure; - using Microsoft.Azure.Management; - using Microsoft.Azure.Management.Network; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Response for list effective route API service call. - /// - public partial class EffectiveRouteListResult - { - /// - /// Initializes a new instance of the EffectiveRouteListResult class. - /// - public EffectiveRouteListResult() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the EffectiveRouteListResult class. - /// - /// A list of effective routes. - /// The URL to get the next set of - /// results. - public EffectiveRouteListResult(IList value = default(IList), string nextLink = default(string)) - { - Value = value; - NextLink = nextLink; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets a list of effective routes. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - /// - /// Gets or sets the URL to get the next set of results. - /// - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteSource.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteSource.cs index ac46a7687c7e..f5e479e4e83a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteSource.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteState.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteState.cs index 30f4679b8d20..e41cf7695c16 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveRouteState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/EffectiveSecurityRuleProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveSecurityRuleProtocol.cs new file mode 100644 index 000000000000..7686124bb13d --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/Models/EffectiveSecurityRuleProtocol.cs @@ -0,0 +1,24 @@ +// 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.Management.Network.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Network; + + /// + /// Defines values for EffectiveSecurityRuleProtocol. + /// + public static class EffectiveSecurityRuleProtocol + { + public const string Tcp = "Tcp"; + public const string Udp = "Udp"; + public const string All = "All"; + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Error.cs b/src/SDKs/Network/Management.Network/Generated/Models/Error.cs index c3330ac827c9..40c68e741e92 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Error.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Error.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ErrorDetails.cs b/src/SDKs/Network/Management.Network/Generated/Models/ErrorDetails.cs index 7b022f1584c8..7dd47416c2a2 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ErrorDetails.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ErrorDetails.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuit.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuit.cs index 1d36ce235b62..8eb8aacd6a1b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuit.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuit.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitArpTable.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitArpTable.cs index 37c19e0aa1b1..c618fb270546 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitArpTable.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitArpTable.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitAuthorization.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitAuthorization.cs index 2a72ad5689e6..203fd0660dca 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitAuthorization.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitAuthorization.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index ee4de70888ba..9c1dcb42c714 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringAdvertisedPublicPrefixState.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringAdvertisedPublicPrefixState.cs index 53f8fce32e17..5cbdb7ebec1d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringAdvertisedPublicPrefixState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringAdvertisedPublicPrefixState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringConfig.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringConfig.cs index 58fbbc47bfc5..b8b8355c6288 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringConfig.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringConfig.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringState.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringState.cs index 3727cbc4e651..81d32c32c130 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringType.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringType.cs index 69ea441b68fd..1607df4b967c 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitPeeringType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTable.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTable.cs index f3fc22cc5a09..1a5dc9a4cdbf 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTable.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTable.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTableSummary.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTableSummary.cs index 9e1f09f36906..0031b6109eec 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTableSummary.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitRoutesTableSummary.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitServiceProviderProperties.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitServiceProviderProperties.cs index f3a350da1792..7eab7132602f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitServiceProviderProperties.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitServiceProviderProperties.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSku.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSku.cs index 9855e4debec0..e9edadbc7c82 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSku.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSku.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuFamily.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuFamily.cs index c9eb8fbcea53..a3ff2082aa79 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuFamily.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuFamily.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuTier.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuTier.cs index 169022911080..b7d949c6ffdb 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuTier.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitSkuTier.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitStats.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitStats.cs index f3f4454d9124..19b48a090133 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitStats.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitStats.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsArpTableListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsArpTableListResult.cs index 32256a52e83f..e3e301b3c337 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsArpTableListResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsArpTableListResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableListResult.cs index 6e8ac7ab7155..4c8d3fde594b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableListResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableListResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableSummaryListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableSummaryListResult.cs index 2136fab4f578..f6cdee28b3c8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableSummaryListResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteCircuitsRoutesTableSummaryListResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProvider.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProvider.cs index de98030168ff..49ca8559bcbd 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProvider.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProvider.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProviderBandwidthsOffered.cs b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProviderBandwidthsOffered.cs index 5f9828dd2f37..38cf0660c684 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProviderBandwidthsOffered.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ExpressRouteServiceProviderBandwidthsOffered.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/FlowLogInformation.cs b/src/SDKs/Network/Management.Network/Generated/Models/FlowLogInformation.cs index 1508a854edc0..b3f5cfc93b0e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/FlowLogInformation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/FlowLogInformation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/FlowLogStatusParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/FlowLogStatusParameters.cs index 3fdd2c0995a5..49ff62287a30 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/FlowLogStatusParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/FlowLogStatusParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/FrontendIpConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/FrontendIpConfiguration.cs index ddd2b7df25a5..ed8f44f68eb2 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/FrontendIpConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/FrontendIpConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/GatewayRoute.cs b/src/SDKs/Network/Management.Network/Generated/Models/GatewayRoute.cs index 287e3850ae80..2820ae0b5915 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/GatewayRoute.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/GatewayRoute.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/GatewayRouteListResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/GatewayRouteListResult.cs index 6306ebd9b51b..c9e0c5049035 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/GatewayRouteListResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/GatewayRouteListResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IPAddressAvailabilityResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/IPAddressAvailabilityResult.cs index 48d22930b60f..e4298ba28d62 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IPAddressAvailabilityResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IPAddressAvailabilityResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IPConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/IPConfiguration.cs index c48051383a21..12051fa176bb 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IPConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IPConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Linq; /// - /// IPConfiguration + /// IP configuration /// [Rest.Serialization.JsonTransformation] public partial class IPConfiguration : SubResource diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IPVersion.cs b/src/SDKs/Network/Management.Network/Generated/Models/IPVersion.cs index 75bc5e335b00..6a068151f92a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IPVersion.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IPVersion.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IkeEncryption.cs b/src/SDKs/Network/Management.Network/Generated/Models/IkeEncryption.cs index 65658635e634..74fa4f9485ff 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IkeEncryption.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IkeEncryption.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IkeIntegrity.cs b/src/SDKs/Network/Management.Network/Generated/Models/IkeIntegrity.cs index 5be14a87f3a4..1aeac1e25bb8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IkeIntegrity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IkeIntegrity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/InboundNatPool.cs b/src/SDKs/Network/Management.Network/Generated/Models/InboundNatPool.cs index a04222c72aaf..e03a74967e93 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/InboundNatPool.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/InboundNatPool.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/InboundNatRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/InboundNatRule.cs index 90883957b60f..218ae2ff7c52 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/InboundNatRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/InboundNatRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -39,7 +39,7 @@ public InboundNatRule() /// A reference to a private IP /// address defined on a network interface of a VM. Traffic sent to the /// frontend port of each of the frontend IP configurations is - /// forwarded to the backed IP. + /// forwarded to the backend IP. /// The transport protocol for the endpoint. /// Possible values are: 'Udp' or 'Tcp'. Possible values include: /// 'Udp', 'Tcp' @@ -95,7 +95,7 @@ public InboundNatRule() /// /// Gets a reference to a private IP address defined on a network /// interface of a VM. Traffic sent to the frontend port of each of the - /// frontend IP configurations is forwarded to the backed IP. + /// frontend IP configurations is forwarded to the backend IP. /// [JsonProperty(PropertyName = "properties.backendIPConfiguration")] public NetworkInterfaceIPConfiguration BackendIPConfiguration { get; private set; } diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IpAllocationMethod.cs b/src/SDKs/Network/Management.Network/Generated/Models/IpAllocationMethod.cs index 58d75a768bcf..ab75bf30005b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IpAllocationMethod.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IpAllocationMethod.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IpsecEncryption.cs b/src/SDKs/Network/Management.Network/Generated/Models/IpsecEncryption.cs index 5a3c92957034..8d029763e87e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IpsecEncryption.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IpsecEncryption.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IpsecIntegrity.cs b/src/SDKs/Network/Management.Network/Generated/Models/IpsecIntegrity.cs index 14f45e1814a3..5ea674cdb1cf 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IpsecIntegrity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IpsecIntegrity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IpsecPolicy.cs b/src/SDKs/Network/Management.Network/Generated/Models/IpsecPolicy.cs index 095c453c1cc9..7d817bc07466 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IpsecPolicy.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IpsecPolicy.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Ipv6ExpressRouteCircuitPeeringConfig.cs b/src/SDKs/Network/Management.Network/Generated/Models/Ipv6ExpressRouteCircuitPeeringConfig.cs index 90b3840d59b7..8615da4bc2e3 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Ipv6ExpressRouteCircuitPeeringConfig.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Ipv6ExpressRouteCircuitPeeringConfig.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/IssueType.cs b/src/SDKs/Network/Management.Network/Generated/Models/IssueType.cs index d88b3320be75..bd1e8cb35f09 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/IssueType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/IssueType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancer.cs b/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancer.cs index 3876fac96613..d4a97ade5843 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancer.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancer.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancingRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancingRule.cs index 2a6e1da081d7..55dc4ad0a81f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancingRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/LoadBalancingRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Linq; /// - /// A loag balancing rule for a load balancer. + /// A load balancing rule for a load balancer. /// [Rest.Serialization.JsonTransformation] public partial class LoadBalancingRule : SubResource diff --git a/src/SDKs/Network/Management.Network/Generated/Models/LoadDistribution.cs b/src/SDKs/Network/Management.Network/Generated/Models/LoadDistribution.cs index 15a322c75677..4528526fa73d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/LoadDistribution.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/LoadDistribution.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/LocalNetworkGateway.cs b/src/SDKs/Network/Management.Network/Generated/Models/LocalNetworkGateway.cs index b4dfcf530602..43d3ff5f88b8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/LocalNetworkGateway.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/LocalNetworkGateway.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterface.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterface.cs index 8822d76dc338..3fb7427a9dee 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterface.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterface.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceAssociation.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceAssociation.cs index 3a864157a831..890caff6cd17 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceAssociation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceAssociation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceDnsSettings.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceDnsSettings.cs index 4cc1c5a9b966..89c6b8c20606 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceDnsSettings.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceDnsSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceIpConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceIpConfiguration.cs index e3041c492c6b..3dd15f995537 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceIpConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkInterfaceIpConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -44,6 +44,8 @@ public NetworkInterfaceIPConfiguration() /// LoadBalancerBackendAddressPool resource. /// A list of references of /// LoadBalancerInboundNatRules. + /// Private IP address of the IP + /// configuration. /// Defines how a private IP /// address is assigned. Possible values are: 'Static' and 'Dynamic'. /// Possible values include: 'Static', 'Dynamic' @@ -52,8 +54,14 @@ public NetworkInterfaceIPConfiguration() /// ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. /// Possible values are: 'IPv4' and 'IPv6'. Possible values include: /// 'IPv4', 'IPv6' + /// Subnet bound to the IP configuration. /// Gets whether this is a primary customer /// address on the network interface. + /// Public IP address bound to the IP + /// configuration. + /// The provisioning state of the + /// network interface IP configuration. Possible values are: + /// 'Updating', 'Deleting', and 'Failed'. /// The name of the resource that is unique within a /// resource group. This name can be used to access the /// resource. @@ -103,6 +111,7 @@ public NetworkInterfaceIPConfiguration() public IList LoadBalancerInboundNatRules { get; set; } /// + /// Gets or sets private IP address of the IP configuration. /// [JsonProperty(PropertyName = "properties.privateIPAddress")] public string PrivateIPAddress { get; set; } @@ -125,6 +134,7 @@ public NetworkInterfaceIPConfiguration() public string PrivateIPAddressVersion { get; set; } /// + /// Gets or sets subnet bound to the IP configuration. /// [JsonProperty(PropertyName = "properties.subnet")] public Subnet Subnet { get; set; } @@ -137,11 +147,15 @@ public NetworkInterfaceIPConfiguration() public bool? Primary { get; set; } /// + /// Gets or sets public IP address bound to the IP configuration. /// [JsonProperty(PropertyName = "properties.publicIPAddress")] public PublicIPAddress PublicIPAddress { get; set; } /// + /// Gets or sets the provisioning state of the network interface IP + /// configuration. Possible values are: 'Updating', 'Deleting', and + /// 'Failed'. /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; set; } diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkOperationStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkOperationStatus.cs index b4fb96c119b2..263ef291391a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkOperationStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkOperationStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkSecurityGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkSecurityGroup.cs index 75f3382a927f..363cef2e6b13 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkSecurityGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkSecurityGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NetworkWatcher.cs b/src/SDKs/Network/Management.Network/Generated/Models/NetworkWatcher.cs index df1eece4319f..d6eda438bf83 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NetworkWatcher.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NetworkWatcher.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NextHopParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/NextHopParameters.cs index b4b4989c253b..e6896b54af69 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NextHopParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NextHopParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NextHopResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/NextHopResult.cs index a5e060b2d2eb..837a41259cfc 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NextHopResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NextHopResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/NextHopType.cs b/src/SDKs/Network/Management.Network/Generated/Models/NextHopType.cs index f893084233e1..27ea2c107d14 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/NextHopType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/NextHopType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Origin.cs b/src/SDKs/Network/Management.Network/Generated/Models/Origin.cs index 5f543306912a..357e21c122d4 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Origin.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Origin.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/OutboundNatRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/OutboundNatRule.cs index 8a3df19d5b33..1fd75a4da338 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/OutboundNatRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/OutboundNatRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCapture.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCapture.cs index 0e40ffd3ccb5..cc952217e73d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCapture.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCapture.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureFilter.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureFilter.cs index 05e2aa776688..4ad10852a86a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureFilter.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureFilter.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureParameters.cs index 9ff1c6351a45..364683fba1e8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureQueryStatusResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureQueryStatusResult.cs index be48021b00eb..18d880122898 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureQueryStatusResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureQueryStatusResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureResult.cs index 7a572c2f5fc4..1f9d04ac7b7a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureStorageLocation.cs b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureStorageLocation.cs index 46aeeee25fa2..fb78a91b5b77 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureStorageLocation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PacketCaptureStorageLocation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Page.cs b/src/SDKs/Network/Management.Network/Generated/Models/Page.cs index aeaa25ed0908..2af5501f6743 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Page.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Page.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Page1.cs b/src/SDKs/Network/Management.Network/Generated/Models/Page1.cs index 8fd5f46d8967..f26467d8ec23 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Page1.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Page1.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilter.cs b/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilter.cs index 5b264c728450..199734ca8b3a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilter.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilter.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilterRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilterRule.cs index 46c4ffcd3d75..38131a866fe9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilterRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PatchRouteFilterRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PcError.cs b/src/SDKs/Network/Management.Network/Generated/Models/PcError.cs index 8a5ec1115ba0..4fc386b8eb60 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PcError.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PcError.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PcProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/PcProtocol.cs index 77b5e3257e9c..6a7b6412e021 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PcProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PcProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PcStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/PcStatus.cs index e86817e3d44a..d8cc7ab74752 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PcStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PcStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PfsGroup.cs b/src/SDKs/Network/Management.Network/Generated/Models/PfsGroup.cs index 65e6891d3c0d..c118ba88ffff 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PfsGroup.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PfsGroup.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServicePropertiesFormat.cs b/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServicePropertiesFormat.cs deleted file mode 100644 index b007b439b9cb..000000000000 --- a/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServicePropertiesFormat.cs +++ /dev/null @@ -1,73 +0,0 @@ -// 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 1.1.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Network.Models -{ - using Microsoft.Azure; - using Microsoft.Azure.Management; - using Microsoft.Azure.Management.Network; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The private access service properties. - /// - public partial class PrivateAccessServicePropertiesFormat - { - /// - /// Initializes a new instance of the - /// PrivateAccessServicePropertiesFormat class. - /// - public PrivateAccessServicePropertiesFormat() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// PrivateAccessServicePropertiesFormat class. - /// - /// The type of the private access. - /// A list of locations. - /// The provisioning state of the - /// resource. - public PrivateAccessServicePropertiesFormat(string service = default(string), IList locations = default(IList), string provisioningState = default(string)) - { - Service = service; - Locations = locations; - ProvisioningState = provisioningState; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the type of the private access. - /// - [JsonProperty(PropertyName = "service")] - public string Service { get; set; } - - /// - /// Gets or sets a list of locations. - /// - [JsonProperty(PropertyName = "locations")] - public IList Locations { get; set; } - - /// - /// Gets or sets the provisioning state of the resource. - /// - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; set; } - - } -} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServiceResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServiceResult.cs deleted file mode 100644 index 36a486ea0d8e..000000000000 --- a/src/SDKs/Network/Management.Network/Generated/Models/PrivateAccessServiceResult.cs +++ /dev/null @@ -1,62 +0,0 @@ -// 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 1.1.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Network.Models -{ - using Microsoft.Azure; - using Microsoft.Azure.Management; - using Microsoft.Azure.Management.Network; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Private access service. - /// - public partial class PrivateAccessServiceResult : SubResource - { - /// - /// Initializes a new instance of the PrivateAccessServiceResult class. - /// - public PrivateAccessServiceResult() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the PrivateAccessServiceResult class. - /// - /// Resource ID. - /// Name of the private access value. - /// Type of the private access value. - public PrivateAccessServiceResult(string id = default(string), string name = default(string), string type = default(string)) - : base(id) - { - Name = name; - Type = type; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets name of the private access value. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets type of the private access value. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - } -} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Probe.cs b/src/SDKs/Network/Management.Network/Generated/Models/Probe.cs index 16401ad02d8f..e0d54dacbc86 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Probe.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Probe.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ProbeProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/ProbeProtocol.cs index 33d36db4b002..b69977021a56 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ProbeProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ProbeProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ProcessorArchitecture.cs b/src/SDKs/Network/Management.Network/Generated/Models/ProcessorArchitecture.cs index 54e37fe0a8d9..bdafd93b653c 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ProcessorArchitecture.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ProcessorArchitecture.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Protocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/Protocol.cs index 2a712abeeea4..3d8c6aaa6a3d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Protocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Protocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ProvisioningState.cs b/src/SDKs/Network/Management.Network/Generated/Models/ProvisioningState.cs index 90b679a67626..bd42e270031e 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ProvisioningState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ProvisioningState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddress.cs b/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddress.cs index 12b357597e5d..52a9d053fc07 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddress.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddress.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -46,8 +46,12 @@ public PublicIPAddress() /// The public IP address version. /// Possible values are: 'IPv4' and 'IPv6'. Possible values include: /// 'IPv4', 'IPv6' + /// The IP configuration associated with + /// the public IP address. /// The FQDN of the DNS record associated /// with the public IP address. + /// The IP address associated with the public + /// IP address resource. /// The idle timeout of the public /// IP address. /// The resource GUID property of the public @@ -93,6 +97,7 @@ public PublicIPAddress() public string PublicIPAddressVersion { get; set; } /// + /// Gets the IP configuration associated with the public IP address. /// [JsonProperty(PropertyName = "properties.ipConfiguration")] public IPConfiguration IpConfiguration { get; private set; } @@ -105,6 +110,8 @@ public PublicIPAddress() public PublicIPAddressDnsSettings DnsSettings { get; set; } /// + /// Gets or sets the IP address associated with the public IP address + /// resource. /// [JsonProperty(PropertyName = "properties.ipAddress")] public string IpAddress { get; set; } diff --git a/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddressDnsSettings.cs b/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddressDnsSettings.cs index 0979c3338d63..c2027741f764 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddressDnsSettings.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/PublicIpAddressDnsSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/QueryTroubleshootingParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/QueryTroubleshootingParameters.cs index 916f06a8fe10..49e9fe7e0639 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/QueryTroubleshootingParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/QueryTroubleshootingParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Resource.cs b/src/SDKs/Network/Management.Network/Generated/Models/Resource.cs index d11e5bcfc768..07185bd19514 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Resource.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Resource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,6 +18,9 @@ namespace Microsoft.Azure.Management.Network.Models using System.Collections.Generic; using System.Linq; + /// + /// Common resource representation. + /// public partial class Resource : IResource { /// diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ResourceNavigationLink.cs b/src/SDKs/Network/Management.Network/Generated/Models/ResourceNavigationLink.cs index 13f4cc995901..11d53778fcb2 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ResourceNavigationLink.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ResourceNavigationLink.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/RetentionPolicyParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/RetentionPolicyParameters.cs index 42377cdc29e6..586478403c13 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/RetentionPolicyParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/RetentionPolicyParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Route.cs b/src/SDKs/Network/Management.Network/Generated/Models/Route.cs index 54d600f652ab..cd4026e0c093 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Route.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Route.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/RouteFilter.cs b/src/SDKs/Network/Management.Network/Generated/Models/RouteFilter.cs index 1a6def24a274..f3384c9c0fc8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/RouteFilter.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/RouteFilter.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/RouteFilterRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/RouteFilterRule.cs index e0f574b3761a..5719f06d3ab8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/RouteFilterRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/RouteFilterRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/RouteNextHopType.cs b/src/SDKs/Network/Management.Network/Generated/Models/RouteNextHopType.cs index 17fed85edd58..8b4bce366d02 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/RouteNextHopType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/RouteNextHopType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/RouteTable.cs b/src/SDKs/Network/Management.Network/Generated/Models/RouteTable.cs index 9d5b00cd4eee..72c0353a6fd1 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/RouteTable.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/RouteTable.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupNetworkInterface.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupNetworkInterface.cs index 57857d999076..eca8e5bcdd97 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupNetworkInterface.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupNetworkInterface.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewParameters.cs index d941778abb42..9ad9e1bf2ee8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewResult.cs index b354d7e08974..c8c2e3046ace 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityGroupViewResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRule.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRule.cs index 4100fcad0f3f..6e6ed484021b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRule.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -14,6 +14,8 @@ namespace Microsoft.Azure.Management.Network.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -42,8 +44,8 @@ public SecurityRule() /// also be used. If this is an ingress rule, specifies where network /// traffic originates from. /// The destination address - /// prefix. CIDR or source IP range. Asterix '*' can also be used to - /// match all source IPs. Default tags such as 'VirtualNetwork', + /// prefix. CIDR or destination IP range. Asterix '*' can also be used + /// to match all source IPs. Default tags such as 'VirtualNetwork', /// 'AzureLoadBalancer' and 'Internet' can also be used. /// The network traffic is allowed or denied. /// Possible values are: 'Allow' and 'Deny'. Possible values include: @@ -61,6 +63,13 @@ public SecurityRule() /// The destination port or range. /// Integer or range between 0 and 65535. Asterix '*' can also be used /// to match all ports. + /// The CIDR or source IP + /// ranges. + /// The destination address + /// prefixes. CIDR or destination IP ranges. + /// The source port ranges. + /// The destination port + /// ranges. /// The priority of the rule. The value can be /// between 100 and 4096. The priority number must be unique for each /// rule in the collection. The lower the priority number, the higher @@ -73,7 +82,7 @@ public SecurityRule() /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public SecurityRule(string protocol, string sourceAddressPrefix, string destinationAddressPrefix, string access, string direction, string id = default(string), string description = default(string), string sourcePortRange = default(string), string destinationPortRange = default(string), int? priority = default(int?), string provisioningState = default(string), string name = default(string), string etag = default(string)) + public SecurityRule(string protocol, string sourceAddressPrefix, string destinationAddressPrefix, string access, string direction, string id = default(string), string description = default(string), string sourcePortRange = default(string), string destinationPortRange = default(string), IList sourceAddressPrefixes = default(IList), IList destinationAddressPrefixes = default(IList), IList sourcePortRanges = default(IList), IList destinationPortRanges = default(IList), int? priority = default(int?), string provisioningState = default(string), string name = default(string), string etag = default(string)) : base(id) { Description = description; @@ -81,7 +90,11 @@ public SecurityRule() SourcePortRange = sourcePortRange; DestinationPortRange = destinationPortRange; SourceAddressPrefix = sourceAddressPrefix; + SourceAddressPrefixes = sourceAddressPrefixes; DestinationAddressPrefix = destinationAddressPrefix; + DestinationAddressPrefixes = destinationAddressPrefixes; + SourcePortRanges = sourcePortRanges; + DestinationPortRanges = destinationPortRanges; Access = access; Priority = priority; Direction = direction; @@ -136,7 +149,13 @@ public SecurityRule() public string SourceAddressPrefix { get; set; } /// - /// Gets or sets the destination address prefix. CIDR or source IP + /// Gets or sets the CIDR or source IP ranges. + /// + [JsonProperty(PropertyName = "properties.sourceAddressPrefixes")] + public IList SourceAddressPrefixes { get; set; } + + /// + /// Gets or sets the destination address prefix. CIDR or destination IP /// range. Asterix '*' can also be used to match all source IPs. /// Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and /// 'Internet' can also be used. @@ -144,6 +163,25 @@ public SecurityRule() [JsonProperty(PropertyName = "properties.destinationAddressPrefix")] public string DestinationAddressPrefix { get; set; } + /// + /// Gets or sets the destination address prefixes. CIDR or destination + /// IP ranges. + /// + [JsonProperty(PropertyName = "properties.destinationAddressPrefixes")] + public IList DestinationAddressPrefixes { get; set; } + + /// + /// Gets or sets the source port ranges. + /// + [JsonProperty(PropertyName = "properties.sourcePortRanges")] + public IList SourcePortRanges { get; set; } + + /// + /// Gets or sets the destination port ranges. + /// + [JsonProperty(PropertyName = "properties.destinationPortRanges")] + public IList DestinationPortRanges { get; set; } + /// /// Gets or sets the network traffic is allowed or denied. Possible /// values are: 'Allow' and 'Deny'. Possible values include: 'Allow', diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAccess.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAccess.cs index 0486cdca2d9a..d26a5d9746c7 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAccess.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAccess.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAssociations.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAssociations.cs index 0e75d8d8e086..28306a051d6b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAssociations.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleAssociations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleDirection.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleDirection.cs index 5fadb7272cc0..a555911dadf9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleDirection.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleDirection.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleProtocol.cs index f1de5ec0c45f..f3982cae9b0d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SecurityRuleProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/ServiceProviderProvisioningState.cs b/src/SDKs/Network/Management.Network/Generated/Models/ServiceProviderProvisioningState.cs index 84bef741e1e2..588c3d7cb40a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/ServiceProviderProvisioningState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/ServiceProviderProvisioningState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Severity.cs b/src/SDKs/Network/Management.Network/Generated/Models/Severity.cs index 4abfcf293391..4a3ec92bae5b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Severity.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Severity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SubResource.cs b/src/SDKs/Network/Management.Network/Generated/Models/SubResource.cs index 8ae6df4b0359..43684b15fc99 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SubResource.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SubResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// Reference to another subresource. + /// public partial class SubResource : IResource { /// diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Subnet.cs b/src/SDKs/Network/Management.Network/Generated/Models/Subnet.cs index 70941043df79..7b51dcf0a5a7 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Subnet.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Subnet.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,8 +42,6 @@ public Subnet() /// NetworkSecurityGroup resource. /// The reference of the RouteTable /// resource. - /// An array of private access - /// services values. /// Gets an array of references to the /// network interface IP configurations using subnet. /// Gets an array of references @@ -55,13 +53,12 @@ public Subnet() /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public Subnet(string id = default(string), string addressPrefix = default(string), NetworkSecurityGroup networkSecurityGroup = default(NetworkSecurityGroup), RouteTable routeTable = default(RouteTable), IList privateAccessServices = default(IList), IList ipConfigurations = default(IList), IList resourceNavigationLinks = default(IList), string provisioningState = default(string), string name = default(string), string etag = default(string)) + public Subnet(string id = default(string), string addressPrefix = default(string), NetworkSecurityGroup networkSecurityGroup = default(NetworkSecurityGroup), RouteTable routeTable = default(RouteTable), IList ipConfigurations = default(IList), IList resourceNavigationLinks = default(IList), string provisioningState = default(string), string name = default(string), string etag = default(string)) : base(id) { AddressPrefix = addressPrefix; NetworkSecurityGroup = networkSecurityGroup; RouteTable = routeTable; - PrivateAccessServices = privateAccessServices; IpConfigurations = ipConfigurations; ResourceNavigationLinks = resourceNavigationLinks; ProvisioningState = provisioningState; @@ -93,12 +90,6 @@ public Subnet() [JsonProperty(PropertyName = "properties.routeTable")] public RouteTable RouteTable { get; set; } - /// - /// Gets or sets an array of private access services values. - /// - [JsonProperty(PropertyName = "properties.privateAccessServices")] - public IList PrivateAccessServices { get; set; } - /// /// Gets an array of references to the network interface IP /// configurations using subnet. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/SubnetAssociation.cs b/src/SDKs/Network/Management.Network/Generated/Models/SubnetAssociation.cs index 6ef9a2abc514..953f41bb58d9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/SubnetAssociation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/SubnetAssociation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Topology.cs b/src/SDKs/Network/Management.Network/Generated/Models/Topology.cs index c459bd8c0b22..1c707f35fc18 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Topology.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Topology.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TopologyAssociation.cs b/src/SDKs/Network/Management.Network/Generated/Models/TopologyAssociation.cs index 7ec58360b4c8..4b6525a7ec39 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TopologyAssociation.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TopologyAssociation.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TopologyParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/TopologyParameters.cs index 31c1131f2b04..cc1dcb30ea5a 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TopologyParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TopologyParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TopologyResource.cs b/src/SDKs/Network/Management.Network/Generated/Models/TopologyResource.cs index c7b022273e4a..24b483acef8f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TopologyResource.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TopologyResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TransportProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/TransportProtocol.cs index 9f89d7392515..0491f2dcc9c6 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TransportProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TransportProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingDetails.cs b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingDetails.cs index 653f4ff781e1..7a6aefcf90f8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingDetails.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingDetails.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingParameters.cs index b54ef2d861f2..6d94526db820 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingRecommendedActions.cs b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingRecommendedActions.cs index 7c2b781c9519..8f038473449c 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingRecommendedActions.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingRecommendedActions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingResult.cs index c499e81ed64e..8a3e9cdfc2f3 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TroubleshootingResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/TunnelConnectionHealth.cs b/src/SDKs/Network/Management.Network/Generated/Models/TunnelConnectionHealth.cs index 801a364ecee8..23e139a782b4 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/TunnelConnectionHealth.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/TunnelConnectionHealth.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/Usage.cs b/src/SDKs/Network/Management.Network/Generated/Models/Usage.cs index d4e36069d71a..a815a8bedc56 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/Usage.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/Usage.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/UsageName.cs b/src/SDKs/Network/Management.Network/Generated/Models/UsageName.cs index 16e3ffe8c264..fb54de465e4f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/UsageName.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/UsageName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowParameters.cs index 602f599e2b7a..0891f21392f3 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowResult.cs b/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowResult.cs index 706fb30ec63b..d59edeb37456 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowResult.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VerificationIPFlowResult.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetwork.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetwork.cs index 2a555fdb27b3..1a9da269fb5f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetwork.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetwork.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkConnectionGatewayReference.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkConnectionGatewayReference.cs new file mode 100644 index 000000000000..546dc7eebd55 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkConnectionGatewayReference.cs @@ -0,0 +1,70 @@ +// 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.Management.Network.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Network; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A reference to VirtualNetworkGateway or LocalNetworkGateway resource. + /// + public partial class VirtualNetworkConnectionGatewayReference + { + /// + /// Initializes a new instance of the + /// VirtualNetworkConnectionGatewayReference class. + /// + public VirtualNetworkConnectionGatewayReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualNetworkConnectionGatewayReference class. + /// + /// The ID of VirtualNetworkGateway or + /// LocalNetworkGateway resource. + public VirtualNetworkConnectionGatewayReference(string id) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ID of VirtualNetworkGateway or LocalNetworkGateway + /// resource. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Id == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Id"); + } + } + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs index c1e46210f53b..3d8c9a017fa2 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -37,6 +37,8 @@ public VirtualNetworkGatewayConnection() /// Initializes a new instance of the VirtualNetworkGatewayConnection /// class. /// + /// The reference to virtual + /// network gateway resource. /// Gateway connection type. Possible /// values are: 'Ipsec','Vnet2Vnet','ExpressRoute', and 'VPNClient. /// Possible values include: 'IPsec', 'Vnet2Vnet', 'ExpressRoute', @@ -47,6 +49,10 @@ public VirtualNetworkGatewayConnection() /// Resource location. /// Resource tags. /// The authorizationKey. + /// The reference to virtual + /// network gateway resource. + /// The reference to local network + /// gateway resource. /// The routing weight. /// The IPSec shared key. /// Virtual network Gateway connection @@ -108,16 +114,19 @@ public VirtualNetworkGatewayConnection() public string AuthorizationKey { get; set; } /// + /// Gets or sets the reference to virtual network gateway resource. /// [JsonProperty(PropertyName = "properties.virtualNetworkGateway1")] public VirtualNetworkGateway VirtualNetworkGateway1 { get; set; } /// + /// Gets or sets the reference to virtual network gateway resource. /// [JsonProperty(PropertyName = "properties.virtualNetworkGateway2")] public VirtualNetworkGateway VirtualNetworkGateway2 { get; set; } /// + /// Gets or sets the reference to local network gateway resource. /// [JsonProperty(PropertyName = "properties.localNetworkGateway2")] public LocalNetworkGateway LocalNetworkGateway2 { get; set; } diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionListEntity.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionListEntity.cs new file mode 100644 index 000000000000..ee9d3621fcbc --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionListEntity.cs @@ -0,0 +1,268 @@ +// 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.Management.Network.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Network; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A common class for general resource information + /// + [Rest.Serialization.JsonTransformation] + public partial class VirtualNetworkGatewayConnectionListEntity : Resource + { + /// + /// Initializes a new instance of the + /// VirtualNetworkGatewayConnectionListEntity class. + /// + public VirtualNetworkGatewayConnectionListEntity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualNetworkGatewayConnectionListEntity class. + /// + /// The reference to virtual + /// network gateway resource. + /// Gateway connection type. Possible + /// values are: 'Ipsec','Vnet2Vnet','ExpressRoute', and 'VPNClient. + /// Possible values include: 'IPsec', 'Vnet2Vnet', 'ExpressRoute', + /// 'VPNClient' + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. + /// The authorizationKey. + /// The reference to virtual + /// network gateway resource. + /// The reference to local network + /// gateway resource. + /// The routing weight. + /// The IPSec shared key. + /// Virtual network Gateway connection + /// status. Possible values are 'Unknown', 'Connecting', 'Connected' + /// and 'NotConnected'. Possible values include: 'Unknown', + /// 'Connecting', 'Connected', 'NotConnected' + /// Collection of all tunnels' + /// connection health status. + /// The egress bytes transferred + /// in this connection. + /// The ingress bytes transferred + /// in this connection. + /// The reference to peerings resource. + /// EnableBgp flag + /// Enable policy-based + /// traffic selectors. + /// The IPSec Policies to be considered by + /// this connection. + /// The resource GUID property of the + /// VirtualNetworkGatewayConnection resource. + /// The provisioning state of the + /// VirtualNetworkGatewayConnection resource. Possible values are: + /// 'Updating', 'Deleting', and 'Failed'. + /// Gets a unique read-only string that changes + /// whenever the resource is updated. + public VirtualNetworkGatewayConnectionListEntity(VirtualNetworkConnectionGatewayReference virtualNetworkGateway1, string connectionType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string authorizationKey = default(string), VirtualNetworkConnectionGatewayReference virtualNetworkGateway2 = default(VirtualNetworkConnectionGatewayReference), VirtualNetworkConnectionGatewayReference localNetworkGateway2 = default(VirtualNetworkConnectionGatewayReference), int? routingWeight = default(int?), string sharedKey = default(string), string connectionStatus = default(string), IList tunnelConnectionStatus = default(IList), long? egressBytesTransferred = default(long?), long? ingressBytesTransferred = default(long?), SubResource peer = default(SubResource), bool? enableBgp = default(bool?), bool? usePolicyBasedTrafficSelectors = default(bool?), IList ipsecPolicies = default(IList), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + : base(id, name, type, location, tags) + { + AuthorizationKey = authorizationKey; + VirtualNetworkGateway1 = virtualNetworkGateway1; + VirtualNetworkGateway2 = virtualNetworkGateway2; + LocalNetworkGateway2 = localNetworkGateway2; + ConnectionType = connectionType; + RoutingWeight = routingWeight; + SharedKey = sharedKey; + ConnectionStatus = connectionStatus; + TunnelConnectionStatus = tunnelConnectionStatus; + EgressBytesTransferred = egressBytesTransferred; + IngressBytesTransferred = ingressBytesTransferred; + Peer = peer; + EnableBgp = enableBgp; + UsePolicyBasedTrafficSelectors = usePolicyBasedTrafficSelectors; + IpsecPolicies = ipsecPolicies; + ResourceGuid = resourceGuid; + ProvisioningState = provisioningState; + Etag = etag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the authorizationKey. + /// + [JsonProperty(PropertyName = "properties.authorizationKey")] + public string AuthorizationKey { get; set; } + + /// + /// Gets or sets the reference to virtual network gateway resource. + /// + [JsonProperty(PropertyName = "properties.virtualNetworkGateway1")] + public VirtualNetworkConnectionGatewayReference VirtualNetworkGateway1 { get; set; } + + /// + /// Gets or sets the reference to virtual network gateway resource. + /// + [JsonProperty(PropertyName = "properties.virtualNetworkGateway2")] + public VirtualNetworkConnectionGatewayReference VirtualNetworkGateway2 { get; set; } + + /// + /// Gets or sets the reference to local network gateway resource. + /// + [JsonProperty(PropertyName = "properties.localNetworkGateway2")] + public VirtualNetworkConnectionGatewayReference LocalNetworkGateway2 { get; set; } + + /// + /// Gets or sets gateway connection type. Possible values are: + /// 'Ipsec','Vnet2Vnet','ExpressRoute', and 'VPNClient. Possible values + /// include: 'IPsec', 'Vnet2Vnet', 'ExpressRoute', 'VPNClient' + /// + [JsonProperty(PropertyName = "properties.connectionType")] + public string ConnectionType { get; set; } + + /// + /// Gets or sets the routing weight. + /// + [JsonProperty(PropertyName = "properties.routingWeight")] + public int? RoutingWeight { get; set; } + + /// + /// Gets or sets the IPSec shared key. + /// + [JsonProperty(PropertyName = "properties.sharedKey")] + public string SharedKey { get; set; } + + /// + /// Gets virtual network Gateway connection status. Possible values are + /// 'Unknown', 'Connecting', 'Connected' and 'NotConnected'. Possible + /// values include: 'Unknown', 'Connecting', 'Connected', + /// 'NotConnected' + /// + [JsonProperty(PropertyName = "properties.connectionStatus")] + public string ConnectionStatus { get; private set; } + + /// + /// Gets collection of all tunnels' connection health status. + /// + [JsonProperty(PropertyName = "properties.tunnelConnectionStatus")] + public IList TunnelConnectionStatus { get; private set; } + + /// + /// Gets the egress bytes transferred in this connection. + /// + [JsonProperty(PropertyName = "properties.egressBytesTransferred")] + public long? EgressBytesTransferred { get; private set; } + + /// + /// Gets the ingress bytes transferred in this connection. + /// + [JsonProperty(PropertyName = "properties.ingressBytesTransferred")] + public long? IngressBytesTransferred { get; private set; } + + /// + /// Gets or sets the reference to peerings resource. + /// + [JsonProperty(PropertyName = "properties.peer")] + public SubResource Peer { get; set; } + + /// + /// Gets or sets enableBgp flag + /// + [JsonProperty(PropertyName = "properties.enableBgp")] + public bool? EnableBgp { get; set; } + + /// + /// Gets or sets enable policy-based traffic selectors. + /// + [JsonProperty(PropertyName = "properties.usePolicyBasedTrafficSelectors")] + public bool? UsePolicyBasedTrafficSelectors { get; set; } + + /// + /// Gets or sets the IPSec Policies to be considered by this + /// connection. + /// + [JsonProperty(PropertyName = "properties.ipsecPolicies")] + public IList IpsecPolicies { get; set; } + + /// + /// Gets or sets the resource GUID property of the + /// VirtualNetworkGatewayConnection resource. + /// + [JsonProperty(PropertyName = "properties.resourceGuid")] + public string ResourceGuid { get; set; } + + /// + /// Gets the provisioning state of the VirtualNetworkGatewayConnection + /// resource. Possible values are: 'Updating', 'Deleting', and + /// 'Failed'. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets a unique read-only string that changes whenever the resource + /// is updated. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (VirtualNetworkGateway1 == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VirtualNetworkGateway1"); + } + if (ConnectionType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ConnectionType"); + } + if (VirtualNetworkGateway1 != null) + { + VirtualNetworkGateway1.Validate(); + } + if (VirtualNetworkGateway2 != null) + { + VirtualNetworkGateway2.Validate(); + } + if (LocalNetworkGateway2 != null) + { + LocalNetworkGateway2.Validate(); + } + if (IpsecPolicies != null) + { + foreach (var element in IpsecPolicies) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionStatus.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionStatus.cs index 1f87aa974898..565f5fad2af9 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionStatus.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionStatus.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionType.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionType.cs index ae8d9993e701..b1e66ea2e8f3 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayConnectionType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs index 187066d2e824..e36ac8edccac 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs index 2ba5aab5da63..b058d1f19532 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuName.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuName.cs index 2c88fdffb8a7..6759b956d904 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuName.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuTier.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuTier.cs index a3debe14a69c..6cf09da7bc92 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuTier.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewaySkuTier.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayType.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayType.cs index e97a181de92c..32c0513e672d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGatewayType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeering.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeering.cs index a4fe71a85ef2..2660b985f3b8 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeering.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeering.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeeringState.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeeringState.cs index 3b4dbb9d7c74..5037c0534062 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeeringState.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkPeeringState.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsage.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsage.cs index 31a6bd04fd87..5a9f84fd541d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsage.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsage.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsageName.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsageName.cs index 8a7baa4307a2..a1a80e75004f 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsageName.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkUsageName.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientParameters.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientParameters.cs index 9dc12c10fc0d..7c8c65e79ea4 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientParameters.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientParameters.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientProtocol.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientProtocol.cs index a2a25b5b29e1..ef4107f8633d 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientProtocol.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientProtocol.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRevokedCertificate.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRevokedCertificate.cs index e98b9a9c3e4e..0484b4d3133b 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRevokedCertificate.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRevokedCertificate.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRootCertificate.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRootCertificate.cs index 4db33c0153a7..5172588f9444 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRootCertificate.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientRootCertificate.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnType.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnType.cs index 1d5bf2fbd021..417243e990a5 100644 --- a/src/SDKs/Network/Management.Network/Generated/Models/VpnType.cs +++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperations.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperations.cs new file mode 100644 index 000000000000..010c2f9c711e --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperations.cs @@ -0,0 +1,624 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// NetworkInterfaceIPConfigurationsOperations operations. + /// + internal partial class NetworkInterfaceIPConfigurationsOperations : IServiceOperations, INetworkInterfaceIPConfigurationsOperations + { + /// + /// Initializes a new instance of the NetworkInterfaceIPConfigurationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal NetworkInterfaceIPConfigurationsOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Get all ip configurations in a network interface + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (networkInterfaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "networkInterfaceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("networkInterfaceName", networkInterfaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{networkInterfaceName}", System.Uri.EscapeDataString(networkInterfaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the specified network interface ip configuration. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The name of the ip configuration name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, string ipConfigurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (networkInterfaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "networkInterfaceName"); + } + if (ipConfigurationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ipConfigurationName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("networkInterfaceName", networkInterfaceName); + tracingParameters.Add("ipConfigurationName", ipConfigurationName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{networkInterfaceName}", System.Uri.EscapeDataString(networkInterfaceName)); + _url = _url.Replace("{ipConfigurationName}", System.Uri.EscapeDataString(ipConfigurationName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get all ip configurations in a network interface + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperationsExtensions.cs new file mode 100644 index 000000000000..0e04d6fb41a7 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceIPConfigurationsOperationsExtensions.cs @@ -0,0 +1,145 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for NetworkInterfaceIPConfigurationsOperations. + /// + public static partial class NetworkInterfaceIPConfigurationsOperationsExtensions + { + /// + /// Get all ip configurations in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + public static IPage List(this INetworkInterfaceIPConfigurationsOperations operations, string resourceGroupName, string networkInterfaceName) + { + return operations.ListAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); + } + + /// + /// Get all ip configurations in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this INetworkInterfaceIPConfigurationsOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the specified network interface ip configuration. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The name of the ip configuration name. + /// + public static NetworkInterfaceIPConfiguration Get(this INetworkInterfaceIPConfigurationsOperations operations, string resourceGroupName, string networkInterfaceName, string ipConfigurationName) + { + return operations.GetAsync(resourceGroupName, networkInterfaceName, ipConfigurationName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified network interface ip configuration. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The name of the ip configuration name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this INetworkInterfaceIPConfigurationsOperations operations, string resourceGroupName, string networkInterfaceName, string ipConfigurationName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, ipConfigurationName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all ip configurations in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this INetworkInterfaceIPConfigurationsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Get all ip configurations in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this INetworkInterfaceIPConfigurationsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperations.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperations.cs new file mode 100644 index 000000000000..20cf44075d90 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperations.cs @@ -0,0 +1,421 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// NetworkInterfaceLoadBalancersOperations operations. + /// + internal partial class NetworkInterfaceLoadBalancersOperations : IServiceOperations, INetworkInterfaceLoadBalancersOperations + { + /// + /// Initializes a new instance of the NetworkInterfaceLoadBalancersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal NetworkInterfaceLoadBalancersOperations(NetworkManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the NetworkManagementClient + /// + public NetworkManagementClient Client { get; private set; } + + /// + /// Get all load balancers in a network interface + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (networkInterfaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "networkInterfaceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("networkInterfaceName", networkInterfaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/loadBalancers").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{networkInterfaceName}", System.Uri.EscapeDataString(networkInterfaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get all load balancers in a network interface + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperationsExtensions.cs new file mode 100644 index 000000000000..068e8f6f7b08 --- /dev/null +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfaceLoadBalancersOperationsExtensions.cs @@ -0,0 +1,99 @@ +// 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.Management.Network +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for NetworkInterfaceLoadBalancersOperations. + /// + public static partial class NetworkInterfaceLoadBalancersOperationsExtensions + { + /// + /// Get all load balancers in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + public static IPage List(this INetworkInterfaceLoadBalancersOperations operations, string resourceGroupName, string networkInterfaceName) + { + return operations.ListAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); + } + + /// + /// Get all load balancers in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the network interface. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this INetworkInterfaceLoadBalancersOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all load balancers in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this INetworkInterfaceLoadBalancersOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Get all load balancers in a network interface + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this INetworkInterfaceLoadBalancersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperations.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperations.cs index 76d636a06eba..51c35bde1fc0 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -675,10 +675,10 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) /// /// The cancellation token. /// - public async Task> GetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginGetEffectiveRouteTableWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse> _response = await BeginGetEffectiveRouteTableWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -697,10 +697,10 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) /// /// The cancellation token. /// - public async Task> ListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse> _response = await BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -1751,7 +1751,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginGetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> BeginGetEffectiveRouteTableWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1883,7 +1883,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1896,7 +1896,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1945,7 +1945,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2077,7 +2077,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2090,7 +2090,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2455,6 +2455,44 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) return _result; } + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> GetEffectiveRouteTableNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse> _response = await BeginGetEffectiveRouteTableNextWithHttpMessagesAsync(nextPageLink, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> ListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse> _response = await BeginListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(nextPageLink, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Gets information about all network interfaces in a virtual machine in a /// virtual machine scale set. @@ -2802,5 +2840,351 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) return _result; } + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> BeginGetEffectiveRouteTableNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginGetEffectiveRouteTableNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> BeginListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginListEffectiveNetworkSecurityGroupsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperationsExtensions.cs index 67d41b1a2c05..f83903c366d2 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkInterfacesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -224,7 +224,7 @@ public static IPage List(this INetworkInterfacesOperations ope /// /// The name of the network interface. /// - public static EffectiveRouteListResult GetEffectiveRouteTable(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) + public static IPage GetEffectiveRouteTable(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) { return operations.GetEffectiveRouteTableAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); } @@ -244,7 +244,7 @@ public static EffectiveRouteListResult GetEffectiveRouteTable(this INetworkInter /// /// The cancellation token. /// - public static async Task GetEffectiveRouteTableAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> GetEffectiveRouteTableAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetEffectiveRouteTableWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -264,7 +264,7 @@ public static EffectiveRouteListResult GetEffectiveRouteTable(this INetworkInter /// /// The name of the network interface. /// - public static EffectiveNetworkSecurityGroupListResult ListEffectiveNetworkSecurityGroups(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) + public static IPage ListEffectiveNetworkSecurityGroups(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) { return operations.ListEffectiveNetworkSecurityGroupsAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); } @@ -284,7 +284,7 @@ public static EffectiveNetworkSecurityGroupListResult ListEffectiveNetworkSecuri /// /// The cancellation token. /// - public static async Task ListEffectiveNetworkSecurityGroupsAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListEffectiveNetworkSecurityGroupsAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -533,7 +533,7 @@ public static NetworkInterface BeginCreateOrUpdate(this INetworkInterfacesOperat /// /// The name of the network interface. /// - public static EffectiveRouteListResult BeginGetEffectiveRouteTable(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) + public static IPage BeginGetEffectiveRouteTable(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) { return operations.BeginGetEffectiveRouteTableAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); } @@ -553,7 +553,7 @@ public static EffectiveRouteListResult BeginGetEffectiveRouteTable(this INetwork /// /// The cancellation token. /// - public static async Task BeginGetEffectiveRouteTableAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> BeginGetEffectiveRouteTableAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BeginGetEffectiveRouteTableWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -573,7 +573,7 @@ public static EffectiveRouteListResult BeginGetEffectiveRouteTable(this INetwork /// /// The name of the network interface. /// - public static EffectiveNetworkSecurityGroupListResult BeginListEffectiveNetworkSecurityGroups(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) + public static IPage BeginListEffectiveNetworkSecurityGroups(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName) { return operations.BeginListEffectiveNetworkSecurityGroupsAsync(resourceGroupName, networkInterfaceName).GetAwaiter().GetResult(); } @@ -593,7 +593,7 @@ public static EffectiveNetworkSecurityGroupListResult BeginListEffectiveNetworkS /// /// The cancellation token. /// - public static async Task BeginListEffectiveNetworkSecurityGroupsAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> BeginListEffectiveNetworkSecurityGroupsAsync(this INetworkInterfacesOperations operations, string resourceGroupName, string networkInterfaceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BeginListEffectiveNetworkSecurityGroupsWithHttpMessagesAsync(resourceGroupName, networkInterfaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -669,6 +669,74 @@ public static IPage ListNext(this INetworkInterfacesOperations } } + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage GetEffectiveRouteTableNext(this INetworkInterfacesOperations operations, string nextPageLink) + { + return operations.GetEffectiveRouteTableNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> GetEffectiveRouteTableNextAsync(this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetEffectiveRouteTableNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListEffectiveNetworkSecurityGroupsNext(this INetworkInterfacesOperations operations, string nextPageLink) + { + return operations.ListEffectiveNetworkSecurityGroupsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListEffectiveNetworkSecurityGroupsNextAsync(this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets information about all network interfaces in a virtual machine in a /// virtual machine scale set. @@ -739,5 +807,73 @@ public static IPage ListVirtualMachineScaleSetNetworkInterface } } + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage BeginGetEffectiveRouteTableNext(this INetworkInterfacesOperations operations, string nextPageLink) + { + return operations.BeginGetEffectiveRouteTableNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all route tables applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> BeginGetEffectiveRouteTableNextAsync(this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginGetEffectiveRouteTableNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage BeginListEffectiveNetworkSecurityGroupsNext(this INetworkInterfacesOperations operations, string nextPageLink) + { + return operations.BeginListEffectiveNetworkSecurityGroupsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all network security groups applied to a network interface. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> BeginListEffectiveNetworkSecurityGroupsNextAsync(this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginListEffectiveNetworkSecurityGroupsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkManagementClient.cs b/src/SDKs/Network/Management.Network/Generated/NetworkManagementClient.cs index 2a4fee34deb2..c38fb20c93a7 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkManagementClient.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; /// - /// Composite Swagger for Network Client + /// Network Client /// public partial class NetworkManagementClient : ServiceClient, INetworkManagementClient, IAzureClient { @@ -102,11 +102,51 @@ public partial class NetworkManagementClient : ServiceClient public virtual ILoadBalancersOperations LoadBalancers { get; private set; } + /// + /// Gets the ILoadBalancerBackendAddressPoolsOperations. + /// + public virtual ILoadBalancerBackendAddressPoolsOperations LoadBalancerBackendAddressPools { get; private set; } + + /// + /// Gets the ILoadBalancerFrontendIPConfigurationsOperations. + /// + public virtual ILoadBalancerFrontendIPConfigurationsOperations LoadBalancerFrontendIPConfigurations { get; private set; } + + /// + /// Gets the IInboundNatRulesOperations. + /// + public virtual IInboundNatRulesOperations InboundNatRules { get; private set; } + + /// + /// Gets the ILoadBalancerLoadBalancingRulesOperations. + /// + public virtual ILoadBalancerLoadBalancingRulesOperations LoadBalancerLoadBalancingRules { get; private set; } + + /// + /// Gets the ILoadBalancerNetworkInterfacesOperations. + /// + public virtual ILoadBalancerNetworkInterfacesOperations LoadBalancerNetworkInterfaces { get; private set; } + + /// + /// Gets the ILoadBalancerProbesOperations. + /// + public virtual ILoadBalancerProbesOperations LoadBalancerProbes { get; private set; } + /// /// Gets the INetworkInterfacesOperations. /// public virtual INetworkInterfacesOperations NetworkInterfaces { get; private set; } + /// + /// Gets the INetworkInterfaceIPConfigurationsOperations. + /// + public virtual INetworkInterfaceIPConfigurationsOperations NetworkInterfaceIPConfigurations { get; private set; } + + /// + /// Gets the INetworkInterfaceLoadBalancersOperations. + /// + public virtual INetworkInterfaceLoadBalancersOperations NetworkInterfaceLoadBalancers { get; private set; } + /// /// Gets the INetworkSecurityGroupsOperations. /// @@ -117,6 +157,11 @@ public partial class NetworkManagementClient : ServiceClient public virtual ISecurityRulesOperations SecurityRules { get; private set; } + /// + /// Gets the IDefaultSecurityRulesOperations. + /// + public virtual IDefaultSecurityRulesOperations DefaultSecurityRules { get; private set; } + /// /// Gets the INetworkWatchersOperations. /// @@ -192,11 +237,6 @@ public partial class NetworkManagementClient : ServiceClient public virtual ILocalNetworkGatewaysOperations LocalNetworkGateways { get; private set; } - /// - /// Gets the IAvailablePrivateAccessServicesOperations. - /// - public virtual IAvailablePrivateAccessServicesOperations AvailablePrivateAccessServices { get; private set; } - /// /// Initializes a new instance of the NetworkManagementClient class. /// @@ -404,9 +444,18 @@ private void Initialize() ExpressRouteCircuits = new ExpressRouteCircuitsOperations(this); ExpressRouteServiceProviders = new ExpressRouteServiceProvidersOperations(this); LoadBalancers = new LoadBalancersOperations(this); + LoadBalancerBackendAddressPools = new LoadBalancerBackendAddressPoolsOperations(this); + LoadBalancerFrontendIPConfigurations = new LoadBalancerFrontendIPConfigurationsOperations(this); + InboundNatRules = new InboundNatRulesOperations(this); + LoadBalancerLoadBalancingRules = new LoadBalancerLoadBalancingRulesOperations(this); + LoadBalancerNetworkInterfaces = new LoadBalancerNetworkInterfacesOperations(this); + LoadBalancerProbes = new LoadBalancerProbesOperations(this); NetworkInterfaces = new NetworkInterfacesOperations(this); + NetworkInterfaceIPConfigurations = new NetworkInterfaceIPConfigurationsOperations(this); + NetworkInterfaceLoadBalancers = new NetworkInterfaceLoadBalancersOperations(this); NetworkSecurityGroups = new NetworkSecurityGroupsOperations(this); SecurityRules = new SecurityRulesOperations(this); + DefaultSecurityRules = new DefaultSecurityRulesOperations(this); NetworkWatchers = new NetworkWatchersOperations(this); PacketCaptures = new PacketCapturesOperations(this); PublicIPAddresses = new PublicIPAddressesOperations(this); @@ -422,7 +471,6 @@ private void Initialize() VirtualNetworkGateways = new VirtualNetworkGatewaysOperations(this); VirtualNetworkGatewayConnections = new VirtualNetworkGatewayConnectionsOperations(this); LocalNetworkGateways = new LocalNetworkGatewaysOperations(this); - AvailablePrivateAccessServices = new AvailablePrivateAccessServicesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkManagementClientExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkManagementClientExtensions.cs index c83dfd67a480..ec66bf20ce99 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkManagementClientExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkManagementClientExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperations.cs index 0e13403d82e9..c9f1732c8eed 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperationsExtensions.cs index 6b1b50fabf2b..e36f2891386c 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkSecurityGroupsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperations.cs b/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperations.cs index deb7106dbc5e..56b0ffac8c73 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperationsExtensions.cs index c2bf58c9dbd5..ffae389dc716 100644 --- a/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/NetworkWatchersOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperations.cs b/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperations.cs index 11230fef7686..49775410c161 100644 --- a/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperationsExtensions.cs index 588700e47082..35747d9a4539 100644 --- a/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/PacketCapturesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperations.cs b/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperations.cs index dba57e3c4ff1..b9738816d080 100644 --- a/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperationsExtensions.cs index f2651f413d1b..df87328e949e 100644 --- a/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/PublicIpAddressesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperations.cs index 24b473f4fe82..807cbd9f3482 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperationsExtensions.cs index bf3578180dc4..853d5b8df482 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteFilterRulesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperations.cs b/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperations.cs index a8e32da1ef75..dd008ec348f8 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperationsExtensions.cs index 180addacad25..4a9b1d3eca4b 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteFiltersOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteTablesOperations.cs b/src/SDKs/Network/Management.Network/Generated/RouteTablesOperations.cs index f0afe94dfec5..4b2eeee6e118 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteTablesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteTablesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RouteTablesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/RouteTablesOperationsExtensions.cs index 37c1d4e05df0..b7a1ceb7b6c8 100644 --- a/src/SDKs/Network/Management.Network/Generated/RouteTablesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/RouteTablesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RoutesOperations.cs b/src/SDKs/Network/Management.Network/Generated/RoutesOperations.cs index c865c22e26ce..121271aa146f 100644 --- a/src/SDKs/Network/Management.Network/Generated/RoutesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/RoutesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/RoutesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/RoutesOperationsExtensions.cs index 39701fac5680..979734d4a392 100644 --- a/src/SDKs/Network/Management.Network/Generated/RoutesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/RoutesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperations.cs b/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperations.cs index 9eafcba64990..9596d3dce637 100644 --- a/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperationsExtensions.cs index 928678d6d690..f5d1377b5ab7 100644 --- a/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/SecurityRulesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/SubnetsOperations.cs b/src/SDKs/Network/Management.Network/Generated/SubnetsOperations.cs index 6b09b3df93ec..88de97861948 100644 --- a/src/SDKs/Network/Management.Network/Generated/SubnetsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/SubnetsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/SubnetsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/SubnetsOperationsExtensions.cs index faa5ed44507e..b3e67ea460cc 100644 --- a/src/SDKs/Network/Management.Network/Generated/SubnetsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/SubnetsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/UsagesOperations.cs b/src/SDKs/Network/Management.Network/Generated/UsagesOperations.cs index af3facd2f32f..19704acdbc3d 100644 --- a/src/SDKs/Network/Management.Network/Generated/UsagesOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/UsagesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/UsagesOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/UsagesOperationsExtensions.cs index 18b463b71fb7..7bc9e9e0b5ff 100644 --- a/src/SDKs/Network/Management.Network/Generated/UsagesOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/UsagesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index 9ee12d005706..b08ba4307864 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs index 8c0b40875312..7224abd34c06 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index 0bcdad3a71cb..7624fb759a39 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -477,6 +477,200 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) return _result; } + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual network gateway. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListConnectionsWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (virtualNetworkGatewayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualNetworkGatewayName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-06-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("virtualNetworkGatewayName", virtualNetworkGatewayName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListConnections", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/connections").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{virtualNetworkGatewayName}", System.Uri.EscapeDataString(virtualNetworkGatewayName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Resets the primary of the virtual network gateway in the specified resource /// group. @@ -2433,5 +2627,178 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) return _result; } + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListConnectionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListConnectionsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperationsExtensions.cs index bf9adfa00dfb..b3560bca0380 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkGatewaysOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -180,6 +180,46 @@ public static IPage List(this IVirtualNetworkGatewaysOper } } + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual network gateway. + /// + public static IPage ListConnections(this IVirtualNetworkGatewaysOperations operations, string resourceGroupName, string virtualNetworkGatewayName) + { + return operations.ListConnectionsAsync(resourceGroupName, virtualNetworkGatewayName).GetAwaiter().GetResult(); + } + + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual network gateway. + /// + /// + /// The cancellation token. + /// + public static async Task> ListConnectionsAsync(this IVirtualNetworkGatewaysOperations operations, string resourceGroupName, string virtualNetworkGatewayName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListConnectionsWithHttpMessagesAsync(resourceGroupName, virtualNetworkGatewayName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Resets the primary of the virtual network gateway in the specified resource /// group. @@ -871,5 +911,39 @@ public static IPage ListNext(this IVirtualNetworkGateways } } + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListConnectionsNext(this IVirtualNetworkGatewaysOperations operations, string nextPageLink) + { + return operations.ListConnectionsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the connections in a virtual network gateway. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListConnectionsNextAsync(this IVirtualNetworkGatewaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListConnectionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index dbf2542ca46a..99898600f50c 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperationsExtensions.cs index 5a5327f20de7..ecdd8e6131cd 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworkPeeringsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperations.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperations.cs index 643a8c97d883..e60a540d374c 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperationsExtensions.cs b/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperationsExtensions.cs index 691e177dc0b8..884d3a961a78 100644 --- a/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperationsExtensions.cs +++ b/src/SDKs/Network/Management.Network/Generated/VirtualNetworksOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/SDKs/Network/Management.Network/Microsoft.Azure.Management.Network.csproj b/src/SDKs/Network/Management.Network/Microsoft.Azure.Management.Network.csproj index 13f76a81017a..93cb833edf50 100644 --- a/src/SDKs/Network/Management.Network/Microsoft.Azure.Management.Network.csproj +++ b/src/SDKs/Network/Management.Network/Microsoft.Azure.Management.Network.csproj @@ -4,7 +4,7 @@ Microsoft.Azure.Management.Network Provides management capabilities for Network services. Microsoft.Azure.Management.Network - 12.0.1-preview + 13.0.0-preview Microsoft Azure Network management;Network;Network management;windowsazureofficial diff --git a/src/SDKs/Network/Management.Network/Properties/AssemblyInfo.cs b/src/SDKs/Network/Management.Network/Properties/AssemblyInfo.cs index e2acb20301f0..c3bb8d5c07da 100644 --- a/src/SDKs/Network/Management.Network/Properties/AssemblyInfo.cs +++ b/src/SDKs/Network/Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("12.0.0.0")] -[assembly: AssemblyFileVersion("12.0.1.0")] +[assembly: AssemblyVersion("13.0.0.0")] +[assembly: AssemblyFileVersion("13.0.0.0")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index 243342fe1591..f66b314be3cd 100644 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -1,62 +1,65 @@ { "Entries": [ { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network?api-version=2015-11-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d58a6c1-8eef-4724-acb9-55c1b09515d4" + "9a27fdcb-80a2-4935-a54e-bf8082e887ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West 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 ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South 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 ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\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 ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"routeTables\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/privateAccessServices\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5908" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:36:28 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-request-id": [ - "00e6c8bc-d78b-4c49-9445-daba0f83fd85" + "fe1c1d7f-861f-45b9-9115-eaa3d2ecef3a" ], "x-ms-correlation-request-id": [ - "00e6c8bc-d78b-4c49-9445-daba0f83fd85" + "fe1c1d7f-861f-45b9-9115-eaa3d2ecef3a" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023726Z:00e6c8bc-d78b-4c49-9445-daba0f83fd85" + "WESTEUROPE:20170801T103628Z:fe1c1d7f-861f-45b9-9115-eaa3d2ecef3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/csmrg7047?api-version=2015-11-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourcegroups/csmrg1248?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTI0OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -65,16 +68,17 @@ "29" ], "x-ms-client-request-id": [ - "02338b57-7070-4929-ab37-5514344597d9" + "cd57296d-8298-4c90-addd-3d6d3f1824af" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047\",\r\n \"name\": \"csmrg7047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248\",\r\n \"name\": \"csmrg1248\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -85,37 +89,38 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:36:30 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "a3adb344-f0c1-4b14-bd49-87ea16be70a7" + "404392f4-783f-4a7c-bc63-76295ee982bf" ], "x-ms-correlation-request-id": [ - "a3adb344-f0c1-4b14-bd49-87ea16be70a7" + "404392f4-783f-4a7c-bc63-76295ee982bf" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023727Z:a3adb344-f0c1-4b14-bd49-87ea16be70a7" + "WESTEUROPE:20170801T103630Z:404392f4-783f-4a7c-bc63-76295ee982bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDYwNjQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -124,16 +129,17 @@ "239" ], "x-ms-client-request-id": [ - "f1757956-4c93-4c3c-8399-51a00c43a050" + "e989b04c-8628-4f44-8876-1286ed70519f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3822\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"etag\": \"W/\\\"a20511e7-e1bd-4d26-a292-020e3493ccf1\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6064\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\",\r\n \"etag\": \"W/\\\"874d8e51-6ed9-4fb8-8e70-c6ba83937a50\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"65b4591b-e98c-46bd-aceb-79b1d576305d\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "623" @@ -144,212 +150,228 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:36:33 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "4b8f4da0-a5eb-4322-a768-7897aee4afb8" + "8d04b88d-2310-46f4-b7b9-dea742d6ba1b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/8d04b88d-2310-46f4-b7b9-dea742d6ba1b?api-version=2017-06-01" ], "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": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "c5ff9052-5be2-476d-bd9a-9c4c15e872a8" + "118ce590-ff9b-46b9-b501-2099c60b9a46" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023728Z:c5ff9052-5be2-476d-bd9a-9c4c15e872a8" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:27 GMT" + "WESTEUROPE:20170801T103634Z:118ce590-ff9b-46b9-b501-2099c60b9a46" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/8d04b88d-2310-46f4-b7b9-dea742d6ba1b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQwNGI4OGQtMjMxMC00NmY0LWI3YjktZGVhNzQyZDZiYTFiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "69b81a25-2630-4cc4-9bd8-aeae447a1ce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:04 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0fa32b76-79db-4304-a081-7272e10fc236" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14996" ], "x-ms-correlation-request-id": [ - "de2293e9-b185-4052-b2db-318ca63911e3" + "ae43e634-f3a1-47c7-9955-dfbd0dcf4198" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023738Z:de2293e9-b185-4052-b2db-318ca63911e3" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:38 GMT" + "WESTEUROPE:20170801T103704Z:ae43e634-f3a1-47c7-9955-dfbd0dcf4198" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDYwNjQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3822\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6064\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\",\r\n \"etag\": \"W/\\\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65b4591b-e98c-46bd-aceb-79b1d576305d\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "624" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "74316229-2498-4469-af2a-f6836003fbae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:05 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"3059310d-826c-48d7-a60e-a659c7899dcd\"" + "W/\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6b2c3d73-634b-4cd2-9cf9-624c94e9396a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14995" ], "x-ms-correlation-request-id": [ - "9035da3c-3859-4f34-9745-16b3d896c3ea" + "36464d6b-5462-48b7-9322-fe3c900622bf" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023738Z:9035da3c-3859-4f34-9745-16b3d896c3ea" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:38 GMT" + "WESTEUROPE:20170801T103705Z:36464d6b-5462-48b7-9322-fe3c900622bf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDYwNjQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b02dba5e-5ce6-4c05-8695-ed754ede62b2" + "c2ad1092-0daf-4181-8fbd-42bc252ab5be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3822\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6064\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\",\r\n \"etag\": \"W/\\\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65b4591b-e98c-46bd-aceb-79b1d576305d\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "624" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "f14bd3f1-9fda-4929-a658-f9a0391f1fdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:05 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"3059310d-826c-48d7-a60e-a659c7899dcd\"" + "W/\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "248cfc58-05a5-4130-a7c0-f5f74ae2d357" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "6306750b-2687-418c-814d-9eb880599821" + "9f242235-ab9b-424b-8375-868d0ad11016" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023738Z:6306750b-2687-418c-814d-9eb880599821" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:38 GMT" + "WESTEUROPE:20170801T103705Z:9f242235-ab9b-424b-8375-868d0ad11016" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg1MTA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5817\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -358,19 +380,20 @@ "206" ], "x-ms-client-request-id": [ - "6d7220c1-e75e-402b-85a6-9c3738561e50" + "68bd37d0-504d-42f4-89dc-ae023a22b559" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7350\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\",\r\n \"etag\": \"W/\\\"9145d7d4-dcce-4c95-8faa-c62218112195\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"49e34044-6f49-4fd8-9611-93219a080509\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\",\r\n \"fqdn\": \"azsmnet6654.westus.validation.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\",\r\n \"etag\": \"W/\\\"9acc04c8-aa13-4635-85e4-be1dd11e4735\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"43be2c35-0af1-4a8c-87dd-40046a79ad4e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5817\",\r\n \"fqdn\": \"azsmnet5817.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "683" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,212 +401,228 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:37:09 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" + "a7bd2221-fd7b-479f-949f-4e0298677768" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/a7bd2221-fd7b-479f-949f-4e0298677768?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "34ebc9a0-da3f-4d8a-9603-502f78bf2efd" + "cab59ddb-5efc-44d7-821b-b5650287fa92" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023739Z:34ebc9a0-da3f-4d8a-9603-502f78bf2efd" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:39 GMT" + "WESTEUROPE:20170801T103709Z:cab59ddb-5efc-44d7-821b-b5650287fa92" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/a7bd2221-fd7b-479f-949f-4e0298677768?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTdiZDIyMjEtZmQ3Yi00NzlmLTk0OWYtNGUwMjk4Njc3NzY4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "90f90d9c-9c21-4f14-a96f-16ee909f6eb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:39 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a7263f32-9d12-41c1-819c-c8fdca39004c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-correlation-request-id": [ - "5cec4056-0198-41a4-833f-7f3487f9e05b" + "03cbbe85-1bf6-4ef5-80cd-4db2311e1fbe" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023750Z:5cec4056-0198-41a4-833f-7f3487f9e05b" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:49 GMT" + "WESTEUROPE:20170801T103740Z:03cbbe85-1bf6-4ef5-80cd-4db2311e1fbe" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg1MTA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7350\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\",\r\n \"etag\": \"W/\\\"d898da82-67ae-4e71-9e86-8bdcd4bbb109\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49e34044-6f49-4fd8-9611-93219a080509\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\",\r\n \"fqdn\": \"azsmnet6654.westus.validation.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\",\r\n \"etag\": \"W/\\\"c88d9323-bf4e-466b-a9a3-2dcc05017a90\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43be2c35-0af1-4a8c-87dd-40046a79ad4e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5817\",\r\n \"fqdn\": \"azsmnet5817.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "684" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "1fa7f3df-55c0-4b6d-ade2-5862a5e2041a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:39 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"d898da82-67ae-4e71-9e86-8bdcd4bbb109\"" + "W/\"c88d9323-bf4e-466b-a9a3-2dcc05017a90\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "358eac49-6a9b-4cb9-aadb-37724f27332d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "cba5a95e-bd71-459f-9572-d33be9cb1b43" + "ee26f6a9-5b73-4924-b7b9-3ed1ec5c41f1" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023750Z:cba5a95e-bd71-459f-9572-d33be9cb1b43" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:49 GMT" + "WESTEUROPE:20170801T103740Z:ee26f6a9-5b73-4924-b7b9-3ed1ec5c41f1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg1MTA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75599b81-78d1-48e7-9ea8-0787f7408165" + "5b0a63e8-7e7b-48a7-850f-2b92ab1c75b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7350\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\",\r\n \"etag\": \"W/\\\"d898da82-67ae-4e71-9e86-8bdcd4bbb109\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49e34044-6f49-4fd8-9611-93219a080509\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\",\r\n \"fqdn\": \"azsmnet6654.westus.validation.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\",\r\n \"etag\": \"W/\\\"c88d9323-bf4e-466b-a9a3-2dcc05017a90\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43be2c35-0af1-4a8c-87dd-40046a79ad4e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5817\",\r\n \"fqdn\": \"azsmnet5817.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "684" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "8326fa18-499a-43d0-ae51-4dfb01842aba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:37:40 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"d898da82-67ae-4e71-9e86-8bdcd4bbb109\"" + "W/\"c88d9323-bf4e-466b-a9a3-2dcc05017a90\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "28c0aa56-24be-4398-9676-a2d020bc26ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14991" ], "x-ms-correlation-request-id": [ - "dc6c8162-2022-4e24-ba1d-344b5d327d5a" + "c4da19af-e688-4e44-a303-2ee5f4c43315" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023750Z:dc6c8162-2022-4e24-ba1d-344b5d327d5a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:49 GMT" + "WESTEUROPE:20170801T103740Z:c4da19af-e688-4e44-a303-2ee5f4c43315" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTQwP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -592,19 +631,20 @@ "403" ], "x-ms-client-request-id": [ - "3cf88d43-4f53-4726-8f17-e7176466f6a8" + "cf66b05a-d329-49b1-b1a8-78bc4b65aafb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8152\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152\",\r\n \"etag\": \"W/\\\"7c8030c6-9b62-4f39-af8f-0abac7f80299\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3318b5df-8272-4fd2-802f-a03a8d6d5406\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7c8030c6-9b62-4f39-af8f-0abac7f80299\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2940\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940\",\r\n \"etag\": \"W/\\\"837a2ac6-3586-4d46-832d-6c98e33e09f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"40bcf014-c355-47df-a531-ac33e86a677b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"837a2ac6-3586-4d46-832d-6c98e33e09f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1057" + "1092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -612,323 +652,293 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:37:42 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" + "329b1400-fa25-4eca-b30c-373deacee939" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/329b1400-fa25-4eca-b30c-373deacee939?api-version=2017-06-01" ], "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" + "1197" ], "x-ms-correlation-request-id": [ - "8f787ece-3613-4c09-b2dc-41ff58f401f5" + "d7a5735e-56e3-4b9f-afb5-95c76cf80606" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023751Z:8f787ece-3613-4c09-b2dc-41ff58f401f5" - ], - "Date": [ - "Thu, 19 Nov 2015 02:37:50 GMT" + "WESTEUROPE:20170801T103743Z:d7a5735e-56e3-4b9f-afb5-95c76cf80606" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/329b1400-fa25-4eca-b30c-373deacee939?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzI5YjE0MDAtZmEyNS00ZWNhLWIzMGMtMzczZGVhY2VlOTM5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "dee0e45e-a9cd-474d-883b-75b1e1b47f3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:38:12 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a4846af3-c991-4816-bd9b-52bb1725547c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14990" ], "x-ms-correlation-request-id": [ - "0a2c441b-0840-4238-85f4-070f1dc27198" + "1d88f3ca-7747-4523-9f8e-20c961129783" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023801Z:0a2c441b-0840-4238-85f4-070f1dc27198" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:00 GMT" + "WESTEUROPE:20170801T103813Z:1d88f3ca-7747-4523-9f8e-20c961129783" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTQwP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2940\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940\",\r\n \"etag\": \"W/\\\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40bcf014-c355-47df-a531-ac33e86a677b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "eba0d4af-a4f5-4ea7-9742-c7cea969297f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:38:12 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "Vary": [ + "Accept-Encoding" ], - "x-ms-correlation-request-id": [ - "9f7162b2-1ad2-4edc-9777-52b2fc65372a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151119T023831Z:9f7162b2-1ad2-4edc-9777-52b2fc65372a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-06-01", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8152\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152\",\r\n \"etag\": \"W/\\\"3b24c842-d967-4250-bf58-64b74e77ffcf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3318b5df-8272-4fd2-802f-a03a8d6d5406\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3b24c842-d967-4250-bf58-64b74e77ffcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1059" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36ceba75-5992-4529-b733-18236856ab94" + "x-ms-request-id": [ + "d91b39d8-ad56-427c-a4b1-d79a5e117310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"3b24c842-d967-4250-bf58-64b74e77ffcf\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-correlation-request-id": [ - "34911a93-dd5d-41be-bfb9-024ef8474f78" + "12857bbf-664f-4e1d-b134-93b709f9eb8f" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023831Z:34911a93-dd5d-41be-bfb9-024ef8474f78" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:31 GMT" + "WESTEUROPE:20170801T103813Z:12857bbf-664f-4e1d-b134-93b709f9eb8f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTQwP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b37094c-96b4-4b7f-aea7-7323bf0235c9" + "0002ce13-9d6c-4691-ad0c-c17b85297509" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8152\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152\",\r\n \"etag\": \"W/\\\"3b24c842-d967-4250-bf58-64b74e77ffcf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3318b5df-8272-4fd2-802f-a03a8d6d5406\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3b24c842-d967-4250-bf58-64b74e77ffcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2940\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940\",\r\n \"etag\": \"W/\\\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40bcf014-c355-47df-a531-ac33e86a677b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1059" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "163c4362-d74a-4086-83cc-602c57755a44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:38:13 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"3b24c842-d967-4250-bf58-64b74e77ffcf\"" + "W/\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1adb69e4-2552-4f76-a891-735ed2d33814" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-correlation-request-id": [ - "eba70263-fb5e-4f9d-9b48-fe46967ccb69" + "8445287d-f8cf-42e1-bb33-7a41735f7aeb" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023831Z:eba70263-fb5e-4f9d-9b48-fe46967ccb69" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:31 GMT" + "WESTEUROPE:20170801T103814Z:8445287d-f8cf-42e1-bb33-7a41735f7aeb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTQwL3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfdabdef-6695-4087-b5f0-93fda87a6994" + "a6405274-234c-4ae5-97fc-b26aee28b880" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3b24c842-d967-4250-bf58-64b74e77ffcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "355" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b0ba15c1-a00f-4734-bc60-ef9ecfd4a658" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:38:13 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"3b24c842-d967-4250-bf58-64b74e77ffcf\"" + "W/\"b76a7fd6-9371-41f6-8af8-ecc5ab963795\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bd7fb972-5690-4e72-a27c-73d0d6c3aad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14987" ], "x-ms-correlation-request-id": [ - "c0c67266-bf63-48e9-952f-ad48e0425ba9" + "7e8d1587-2e38-4048-8200-5dae60982cb6" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023831Z:c0c67266-bf63-48e9-952f-ad48e0425ba9" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:31 GMT" + "WESTEUROPE:20170801T103814Z:7e8d1587-2e38-4048-8200-5dae60982cb6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n }\r\n },\r\n \"name\": \"azsmnet7945\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -937,19 +947,20 @@ "950" ], "x-ms-client-request-id": [ - "b9d61623-d4ca-44b5-a568-774e1467b388" + "e19879b5-4d90-4f75-bb45-44346ce91e75" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"c9b6159c-19cd-4509-8ef7-d5d50d5d4fdb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"c9b6159c-19cd-4509-8ef7-d5d50d5d4fdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"bcba9cc3-130e-43d1-bb04-cb4968aaa166\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"bcba9cc3-130e-43d1-bb04-cb4968aaa166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1755" + "1907" ], "Content-Type": [ "application/json; charset=utf-8" @@ -957,3107 +968,3917 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:38:16 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3c0f845a-886c-4824-98d7-99892538c8d2" + "b2cc47f8-773d-403a-b2ba-3c06a263826f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "df988425-524d-4c78-aad3-7ac91928951a" + "7d2298da-9edc-47a5-93e4-3cd223f51778" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023832Z:df988425-524d-4c78-aad3-7ac91928951a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:32 GMT" + "WESTEUROPE:20170801T103816Z:7d2298da-9edc-47a5-93e4-3cd223f51778" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n }\r\n },\r\n \"name\": \"azsmnet7945\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\"\r\n },\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1555" + "1514" ], "x-ms-client-request-id": [ - "6cd0d65d-d990-4271-8c89-afed113dc1dc" + "2692be74-aa00-44da-83ad-782b89643715" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"a56d3d92-4cb6-4603-9b26-2721c52b207e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"a56d3d92-4cb6-4603-9b26-2721c52b207e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"de4e2000-e1f9-401b-989f-2bbb274c8c87\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"de4e2000-e1f9-401b-989f-2bbb274c8c87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1634" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 11:09:37 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d92cddce-5df0-46b3-b974-40633cde5f4a" + "c96176ce-4058-4ca5-9611-f1f91ea3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c96176ce-4058-4ca5-9611-f1f91ea3431b?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "1a902055-b5a0-4b3b-9c89-fbc43d5381fc" + "f611f4c6-b746-4413-945b-467cf2ce74db" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030604Z:1a902055-b5a0-4b3b-9c89-fbc43d5381fc" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:04 GMT" + "WESTEUROPE:20170801T110937Z:f611f4c6-b746-4413-945b-467cf2ce74db" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "314ad465-304a-446e-96d1-f400bb3ba5e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:38:47 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a0543427-b010-4788-a7e7-988a30108da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14986" ], "x-ms-correlation-request-id": [ - "b08fd57e-a123-4236-9df8-8169ac181ba2" + "fa589459-8fec-4776-9a7c-e28b11aec199" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023843Z:b08fd57e-a123-4236-9df8-8169ac181ba2" - ], - "Date": [ - "Thu, 19 Nov 2015 02:38:42 GMT" + "WESTEUROPE:20170801T103847Z:fa589459-8fec-4776-9a7c-e28b11aec199" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b28b3dbd-7022-453e-8782-4f7a5b6cde11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:39:17 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "396a35f1-fb65-498b-a837-b80e5e38260f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-correlation-request-id": [ - "0d54a527-33a8-455a-a595-62f98a3db131" + "26ccb0fc-ef9b-41bf-af5f-e0aa5e5e594b" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023913Z:0d54a527-33a8-455a-a595-62f98a3db131" - ], - "Date": [ - "Thu, 19 Nov 2015 02:39:12 GMT" + "WESTEUROPE:20170801T103918Z:26ccb0fc-ef9b-41bf-af5f-e0aa5e5e594b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "0e711c30-c5ad-43d5-922d-d7aaac215cc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:39:48 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ef284f7e-c43d-4d73-81bb-676e93c498fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14984" ], "x-ms-correlation-request-id": [ - "f627dd52-d2c6-46e4-aa67-3f38359b5b99" + "60e0cb02-29f3-421f-ad62-8f987e95d66e" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T023943Z:f627dd52-d2c6-46e4-aa67-3f38359b5b99" - ], - "Date": [ - "Thu, 19 Nov 2015 02:39:42 GMT" + "WESTEUROPE:20170801T103948Z:60e0cb02-29f3-421f-ad62-8f987e95d66e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "454c3d1f-17a3-4874-b217-c1254ea6fcb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:40:19 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1b2201c2-d825-42d7-ba79-ef7dad59f3e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14982" ], "x-ms-correlation-request-id": [ - "de771ff1-2d72-4e5c-a84a-7f4e5540e25b" + "49f38692-016b-41b4-8816-2d015848adb8" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024013Z:de771ff1-2d72-4e5c-a84a-7f4e5540e25b" - ], - "Date": [ - "Thu, 19 Nov 2015 02:40:13 GMT" + "WESTEUROPE:20170801T104019Z:49f38692-016b-41b4-8816-2d015848adb8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "a09b6b4e-5616-4a8c-a1f8-a3ee67bcaafb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:40:49 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f1c696b-96b5-4c33-9175-eb7cf077a3b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14981" ], "x-ms-correlation-request-id": [ - "87f0933f-f00f-4f7b-9378-04a4da1ee9d8" + "e3533201-d15c-49b4-abf8-b80efcf75e93" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024043Z:87f0933f-f00f-4f7b-9378-04a4da1ee9d8" - ], - "Date": [ - "Thu, 19 Nov 2015 02:40:43 GMT" + "WESTEUROPE:20170801T104050Z:e3533201-d15c-49b4-abf8-b80efcf75e93" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "282cb7c9-c15b-4017-91d9-ae692aa541de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:41:19 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "63011cdf-75dc-4595-a65e-f2119fbcf8e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14980" ], "x-ms-correlation-request-id": [ - "1d949bfd-8927-42c8-9b65-c88bc5404550" + "67689764-eeea-41be-bedc-80ca1b913dbd" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024113Z:1d949bfd-8927-42c8-9b65-c88bc5404550" - ], - "Date": [ - "Thu, 19 Nov 2015 02:41:13 GMT" + "WESTEUROPE:20170801T104120Z:67689764-eeea-41be-bedc-80ca1b913dbd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4883d86f-38a9-499c-a114-979da93499ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:41:51 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c5960d4-511f-4255-b10a-f955a0c441a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14979" ], "x-ms-correlation-request-id": [ - "bde8a4d1-6193-4462-a77c-232556c4cbd8" + "f60498ef-b66c-4645-ae3e-853a04d65def" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024143Z:bde8a4d1-6193-4462-a77c-232556c4cbd8" - ], - "Date": [ - "Thu, 19 Nov 2015 02:41:43 GMT" + "WESTEUROPE:20170801T104151Z:f60498ef-b66c-4645-ae3e-853a04d65def" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c83a6f18-c185-43f8-8d91-a20c7f7171da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:42:21 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eac757f9-b6e4-4b9d-8e2b-2ce2964ccdb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14978" ], "x-ms-correlation-request-id": [ - "84ff17d2-3cc1-42b8-8806-76025bcf3694" + "9b3a1fff-c56f-4d23-a65a-a27f59bdccb2" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024214Z:84ff17d2-3cc1-42b8-8806-76025bcf3694" - ], - "Date": [ - "Thu, 19 Nov 2015 02:42:13 GMT" + "WESTEUROPE:20170801T104222Z:9b3a1fff-c56f-4d23-a65a-a27f59bdccb2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "cdfb7c46-ea76-4993-9adf-7f89f6744805" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:42:52 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d671428c-1c83-4aff-bd33-8e0d1bde392b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14977" ], "x-ms-correlation-request-id": [ - "6240fa34-5a7a-496d-9922-aa7c5a94b51f" + "3ba6b965-f5bb-4cfe-9fae-34bca133cded" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024244Z:6240fa34-5a7a-496d-9922-aa7c5a94b51f" - ], - "Date": [ - "Thu, 19 Nov 2015 02:42:43 GMT" + "WESTEUROPE:20170801T104252Z:3ba6b965-f5bb-4cfe-9fae-34bca133cded" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4dfc27b7-01ff-4337-a3af-2be2b97464c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:43:23 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "40def357-c99c-47b0-898d-721cead712cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14976" ], "x-ms-correlation-request-id": [ - "69724db7-df35-4c04-9111-a5336342fbc0" + "ee0dd3ab-e7ed-4e48-8593-b723cf8b8fea" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024314Z:69724db7-df35-4c04-9111-a5336342fbc0" - ], - "Date": [ - "Thu, 19 Nov 2015 02:43:14 GMT" + "WESTEUROPE:20170801T104323Z:ee0dd3ab-e7ed-4e48-8593-b723cf8b8fea" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "002f0793-4b29-4198-bfb4-072bb8f11d85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:43:53 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ac184eed-5f9e-42bc-adaf-d726ef7917bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14975" ], "x-ms-correlation-request-id": [ - "7a2303fc-d6b5-40ab-905e-cd5eb6818734" + "c5e7c414-2e0a-43f1-b7f0-d42c965ea71d" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024344Z:7a2303fc-d6b5-40ab-905e-cd5eb6818734" - ], - "Date": [ - "Thu, 19 Nov 2015 02:43:44 GMT" + "WESTEUROPE:20170801T104354Z:c5e7c414-2e0a-43f1-b7f0-d42c965ea71d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "cf211d67-2aee-4ace-9e78-8790d381d826" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:44:23 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2609e684-ea99-4555-aabe-74ad3742d9bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14974" ], "x-ms-correlation-request-id": [ - "d5703356-d8dc-4b98-bae4-cedb478c228a" + "20b7238a-38de-4c25-b9f6-c4dbfcd07621" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024414Z:d5703356-d8dc-4b98-bae4-cedb478c228a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:44:14 GMT" + "WESTEUROPE:20170801T104424Z:20b7238a-38de-4c25-b9f6-c4dbfcd07621" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "46c03844-854e-42db-9c70-4caa250891f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:44:55 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4ca76c38-4e53-46ba-9df5-14d2b5977206" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14973" ], "x-ms-correlation-request-id": [ - "44e514db-d612-4134-b237-94bfbce6050e" + "317366d0-0f06-4215-8aa3-4b5bbffa7f3c" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024444Z:44e514db-d612-4134-b237-94bfbce6050e" - ], - "Date": [ - "Thu, 19 Nov 2015 02:44:44 GMT" + "WESTEUROPE:20170801T104455Z:317366d0-0f06-4215-8aa3-4b5bbffa7f3c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "23edd175-9c1a-4c66-9592-0c116dd69683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:45:26 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2a3d7589-3600-4d08-b9d2-5377f432b46a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14973" ], "x-ms-correlation-request-id": [ - "634ff117-ece8-4a78-81a3-bd055e9f08f2" + "d8137c5a-7b74-4fbf-8fb7-07923d474d88" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024514Z:634ff117-ece8-4a78-81a3-bd055e9f08f2" - ], - "Date": [ - "Thu, 19 Nov 2015 02:45:14 GMT" + "WESTEUROPE:20170801T104526Z:d8137c5a-7b74-4fbf-8fb7-07923d474d88" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "49997323-9b22-4eb6-a83a-96554e5c1d1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:45:56 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "53483c73-e353-405e-8866-8c89803bd70a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14972" ], "x-ms-correlation-request-id": [ - "1fb64580-ead9-41cd-bbb3-23ee1083dce5" + "dc40b8bc-98c2-4a9f-b8bf-82e58e8a7180" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024545Z:1fb64580-ead9-41cd-bbb3-23ee1083dce5" - ], - "Date": [ - "Thu, 19 Nov 2015 02:45:44 GMT" + "WESTEUROPE:20170801T104557Z:dc40b8bc-98c2-4a9f-b8bf-82e58e8a7180" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "e3bc7403-741f-483a-9b3a-8a3f6f89fbaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:46:26 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "95dc4866-8b1e-4928-bc7c-14e5ce8090e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14971" ], "x-ms-correlation-request-id": [ - "2139e1f3-d3f1-4dc5-abff-37cac8b68651" + "21021dbb-ef74-475b-a231-eb4f3c6685db" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024615Z:2139e1f3-d3f1-4dc5-abff-37cac8b68651" - ], - "Date": [ - "Thu, 19 Nov 2015 02:46:14 GMT" + "WESTEUROPE:20170801T104627Z:21021dbb-ef74-475b-a231-eb4f3c6685db" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b0ea9a96-33df-4f2e-9912-10e165a89ee5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:46:58 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5b93eba3-be9a-43c2-a659-5c490981c75b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14970" ], "x-ms-correlation-request-id": [ - "5573ceaf-c2bc-4118-8009-92371c67098e" + "6685e209-b470-46f2-a9bb-b62da8895143" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024645Z:5573ceaf-c2bc-4118-8009-92371c67098e" - ], - "Date": [ - "Thu, 19 Nov 2015 02:46:44 GMT" + "WESTEUROPE:20170801T104659Z:6685e209-b470-46f2-a9bb-b62da8895143" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "74d7e1dc-f76f-4546-9481-e07f4db5b13b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:47:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "55ce74da-15a5-426c-97b1-411acd97f411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14969" ], "x-ms-correlation-request-id": [ - "b03e799a-2221-42fb-85e4-d75a1478039e" + "72274b77-f6fe-4399-b167-2dc2c7aab287" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024715Z:b03e799a-2221-42fb-85e4-d75a1478039e" - ], - "Date": [ - "Thu, 19 Nov 2015 02:47:14 GMT" + "WESTEUROPE:20170801T104729Z:72274b77-f6fe-4399-b167-2dc2c7aab287" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "e237ce98-6e85-4754-9746-587586ee950f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:47:59 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "af6c81a6-b841-490e-b45c-eba4a7f9c89b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14968" ], "x-ms-correlation-request-id": [ - "408732a8-c4c8-4e7b-a5b2-b767e66e6098" + "66bbd495-aeba-41af-802e-2969c2161110" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024745Z:408732a8-c4c8-4e7b-a5b2-b767e66e6098" - ], - "Date": [ - "Thu, 19 Nov 2015 02:47:45 GMT" + "WESTEUROPE:20170801T104800Z:66bbd495-aeba-41af-802e-2969c2161110" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "da43f74c-5460-45e8-aabd-0499ef2d5a0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:48:30 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6bfa947d-7c88-4b51-b153-0375461302ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14967" ], "x-ms-correlation-request-id": [ - "98af197e-7354-464a-b29d-8aa8500b3d17" + "a9350f3a-f5a8-4ac9-8f6b-47f9c517dc51" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024815Z:98af197e-7354-464a-b29d-8aa8500b3d17" - ], - "Date": [ - "Thu, 19 Nov 2015 02:48:15 GMT" + "WESTEUROPE:20170801T104831Z:a9350f3a-f5a8-4ac9-8f6b-47f9c517dc51" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4a23a90e-d111-4cd9-adef-974cda919a20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:49:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7b22822e-b18d-417e-b6fa-a111f9ded277" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14966" ], "x-ms-correlation-request-id": [ - "79cd6807-0ea1-4813-9ce6-18a262fe25c5" + "a9b87484-79e5-4ead-b8fa-a557017d73b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024846Z:79cd6807-0ea1-4813-9ce6-18a262fe25c5" - ], - "Date": [ - "Thu, 19 Nov 2015 02:48:45 GMT" + "WESTEUROPE:20170801T104902Z:a9b87484-79e5-4ead-b8fa-a557017d73b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "296323a8-57c3-4b61-a890-22f9883f1242" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:49:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6a858907-bffd-49f1-a489-9c0d32e80cfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14965" ], "x-ms-correlation-request-id": [ - "67865356-9ab1-4b11-9d09-40deb5b34437" + "5a37a2cc-16c6-4170-a7d5-b3a362149d24" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024916Z:67865356-9ab1-4b11-9d09-40deb5b34437" - ], - "Date": [ - "Thu, 19 Nov 2015 02:49:15 GMT" + "WESTEUROPE:20170801T104933Z:5a37a2cc-16c6-4170-a7d5-b3a362149d24" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "bbe2397a-0e0f-4677-9e7b-df255f40d29a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:50:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6819182b-1393-4c00-a74b-7aa9e9b73ac5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14964" ], "x-ms-correlation-request-id": [ - "e1656570-ebb1-4d12-af72-7b58a103b1ff" + "0e984778-792d-49f1-8ce1-6775e7efae44" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T024946Z:e1656570-ebb1-4d12-af72-7b58a103b1ff" - ], - "Date": [ - "Thu, 19 Nov 2015 02:49:46 GMT" + "WESTEUROPE:20170801T105003Z:0e984778-792d-49f1-8ce1-6775e7efae44" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "89a5000e-8945-4300-82f1-5bf51c915ed3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:50:33 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2fa81e48-4d13-4cc8-b75c-36b8c75f30bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14963" ], "x-ms-correlation-request-id": [ - "0eb91b83-cea3-455a-b9c6-8369c1ff2fbf" + "9d670d85-e1c8-4ed9-a3b3-1eb269619526" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025016Z:0eb91b83-cea3-455a-b9c6-8369c1ff2fbf" - ], - "Date": [ - "Thu, 19 Nov 2015 02:50:16 GMT" + "WESTEUROPE:20170801T105034Z:9d670d85-e1c8-4ed9-a3b3-1eb269619526" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4929c028-93fc-427e-87b3-2408cefd1933" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:51:04 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2e9444eb-3de7-4993-a18f-137e4895eca4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14962" ], "x-ms-correlation-request-id": [ - "00f291c4-9e52-4370-9a03-a2a9b56ccd92" + "63e92914-c175-41f9-8bbe-26b4ab6bf118" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025046Z:00f291c4-9e52-4370-9a03-a2a9b56ccd92" - ], - "Date": [ - "Thu, 19 Nov 2015 02:50:45 GMT" + "WESTEUROPE:20170801T105104Z:63e92914-c175-41f9-8bbe-26b4ab6bf118" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "760af88b-0b94-42bd-93b5-c0a9fe98c27f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:51:34 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a9275fae-4379-43a5-ae04-4549c791ca4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" ], "x-ms-correlation-request-id": [ - "6148e9b0-87d2-4e99-8210-2797570260b8" + "e51a6327-9cac-4a49-adcf-b6bf078f1261" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025116Z:6148e9b0-87d2-4e99-8210-2797570260b8" - ], - "Date": [ - "Thu, 19 Nov 2015 02:51:16 GMT" + "WESTEUROPE:20170801T105135Z:e51a6327-9cac-4a49-adcf-b6bf078f1261" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:52:05 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "486345e4-749f-4888-bba8-2cbef48578cf" + "dc40e38b-9e86-499a-b01c-2fbc336f3e8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "40d48aac-41d3-432f-965f-e9c7493b8c0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105206Z:40d48aac-41d3-432f-965f-e9c7493b8c0d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:52:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cfa0091d-f3b4-4d0e-bd80-35747b98da51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14959" ], "x-ms-correlation-request-id": [ - "a8c1ccc5-838b-4d19-b506-4f606237740a" + "112ad6b4-65e0-4421-b2a2-5e0a814723ee" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025147Z:a8c1ccc5-838b-4d19-b506-4f606237740a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:51:46 GMT" + "WESTEUROPE:20170801T105236Z:112ad6b4-65e0-4421-b2a2-5e0a814723ee" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:53:06 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "6a4f79a7-cf1b-4898-b0b6-783a73339112" + "e3cf5275-9b19-463a-9497-7cb963df7e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "04d74b7b-4361-46ed-aef4-fab839ead95e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105307Z:04d74b7b-4361-46ed-aef4-fab839ead95e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:53:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0b6af968-c3eb-49dc-a239-4b533b73887d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14957" ], "x-ms-correlation-request-id": [ - "76178ae6-ca62-4ce6-8f3a-245764e0848a" + "a0aa25a3-6163-4122-bb26-fb2f88a58157" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025217Z:76178ae6-ca62-4ce6-8f3a-245764e0848a" - ], - "Date": [ - "Thu, 19 Nov 2015 02:52:16 GMT" + "WESTEUROPE:20170801T105337Z:a0aa25a3-6163-4122-bb26-fb2f88a58157" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:54:07 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d310fb93-8506-4fbd-85a3-a18bed330b70" + "1d9899e0-23f9-469c-bd9c-7f7bef668aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "89f4df45-5a2b-4681-b13b-29bc0596f57a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105408Z:89f4df45-5a2b-4681-b13b-29bc0596f57a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:54:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9a4f2b73-b868-43a6-ba4c-d1925c99de84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14955" ], "x-ms-correlation-request-id": [ - "4e215f10-b7ae-4e56-9eca-e715a32dd499" + "c8c79301-2b1f-46ec-99de-fa8b753a4a8d" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025247Z:4e215f10-b7ae-4e56-9eca-e715a32dd499" - ], - "Date": [ - "Thu, 19 Nov 2015 02:52:46 GMT" + "WESTEUROPE:20170801T105439Z:c8c79301-2b1f-46ec-99de-fa8b753a4a8d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:55:12 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "0b5ae13f-c5e9-49c9-97b4-5edf82a6c5aa" + "a5683ce6-39cb-40d8-816a-584906b42c49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "31e073fd-29df-483a-86f3-0354d830bb12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105512Z:31e073fd-29df-483a-86f3-0354d830bb12" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:55:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "da795ea8-7f2d-439f-9647-61c2d19dba01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14954" ], "x-ms-correlation-request-id": [ - "ed462ff5-bfcb-46f8-8d69-d7b01917ebf2" + "1bac3b8f-2546-4fa5-a6ec-dfa734dd6f17" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025317Z:ed462ff5-bfcb-46f8-8d69-d7b01917ebf2" - ], - "Date": [ - "Thu, 19 Nov 2015 02:53:16 GMT" + "WESTEUROPE:20170801T105543Z:1bac3b8f-2546-4fa5-a6ec-dfa734dd6f17" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:56:13 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "f4b7a570-0f14-43e2-b2e5-198c4677d8fe" + "3f56b6da-ef2e-4e7b-977c-f587027c076f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "61d2ec7a-3af7-4935-806c-f0d6883f9443" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105614Z:61d2ec7a-3af7-4935-806c-f0d6883f9443" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:56:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "57e3d555-43e2-4ceb-be84-0b7cd259e36b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14952" ], "x-ms-correlation-request-id": [ - "61f3c098-1f77-4e42-9b99-e77c155f9379" + "4201e5f7-a49d-479b-abdc-2967d2356499" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025347Z:61f3c098-1f77-4e42-9b99-e77c155f9379" - ], - "Date": [ - "Thu, 19 Nov 2015 02:53:47 GMT" + "WESTEUROPE:20170801T105644Z:4201e5f7-a49d-479b-abdc-2967d2356499" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:57:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "3cb179ce-fac8-4df6-b599-3733f61ab480" + "78d9c922-2154-4f56-acf7-871dda9df9a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "ce63db1a-ce03-4fd0-8bb4-ee59fe1d4470" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T105715Z:ce63db1a-ce03-4fd0-8bb4-ee59fe1d4470" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 10:57:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "24c9d6f8-368e-43fc-b652-afd9e70569e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14950" ], "x-ms-correlation-request-id": [ - "892badf5-45fa-4508-a8dc-b5f394a3c3e1" + "a59eacfe-8bb9-4de2-8a23-49895918d016" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025418Z:892badf5-45fa-4508-a8dc-b5f394a3c3e1" - ], - "Date": [ - "Thu, 19 Nov 2015 02:54:17 GMT" + "WESTEUROPE:20170801T105745Z:a59eacfe-8bb9-4de2-8a23-49895918d016" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b7821974-3b2c-4cef-bb83-5d4b5314bf99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:58:16 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6be9f559-4c3d-41bf-b5c9-1bb07c6d626e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14949" ], "x-ms-correlation-request-id": [ - "f5bda4e5-3180-486e-80f4-968090730b32" + "fc40ccc6-7776-4602-aa53-2182602fdf46" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025448Z:f5bda4e5-3180-486e-80f4-968090730b32" - ], - "Date": [ - "Thu, 19 Nov 2015 02:54:47 GMT" + "WESTEUROPE:20170801T105816Z:fc40ccc6-7776-4602-aa53-2182602fdf46" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "0eb06816-dd4f-4ec6-9a1c-5faa01ff8e72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:58:46 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "34932271-8161-40c7-b8a3-4cf854f5e71d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14948" ], "x-ms-correlation-request-id": [ - "7523169b-7748-4315-96b0-9336f7d177b1" + "32931306-9527-49ff-96c1-bad6f9d6c1b9" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025518Z:7523169b-7748-4315-96b0-9336f7d177b1" - ], - "Date": [ - "Thu, 19 Nov 2015 02:55:17 GMT" + "WESTEUROPE:20170801T105847Z:32931306-9527-49ff-96c1-bad6f9d6c1b9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "ee1f244a-bc9f-4852-8c0e-4b8591f83b97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:59:17 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2cffbbc8-54e8-4bd5-8bdb-eca0ded06165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14947" ], "x-ms-correlation-request-id": [ - "95a9cc49-e8d4-40c9-bdda-08614b686a22" + "9d0ca5ab-7911-469e-b66f-1021c02440f5" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025548Z:95a9cc49-e8d4-40c9-bdda-08614b686a22" - ], - "Date": [ - "Thu, 19 Nov 2015 02:55:47 GMT" + "WESTEUROPE:20170801T105917Z:9d0ca5ab-7911-469e-b66f-1021c02440f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "f7df5eb9-aa97-4505-a27a-8a29732d3cfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 10:59:47 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b370684e-bac0-4545-a7d6-f582170ef8d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14946" ], "x-ms-correlation-request-id": [ - "84d887fa-9520-4ca7-8ac3-fcfe4646f6ad" + "083d1ead-422b-4555-a3b9-e3903974b143" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025618Z:84d887fa-9520-4ca7-8ac3-fcfe4646f6ad" - ], - "Date": [ - "Thu, 19 Nov 2015 02:56:18 GMT" + "WESTEUROPE:20170801T105948Z:083d1ead-422b-4555-a3b9-e3903974b143" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "bb87e8ef-89ee-4507-be2e-62d27fb4736e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:00:18 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f1427b42-5962-4353-86e2-20f56c9cf0a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14946" ], "x-ms-correlation-request-id": [ - "a4082065-5cb3-4962-aaa0-f18072242b58" + "b4b9933d-1723-4b25-9c91-13f32cda521e" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025648Z:a4082065-5cb3-4962-aaa0-f18072242b58" - ], - "Date": [ - "Thu, 19 Nov 2015 02:56:48 GMT" + "WESTEUROPE:20170801T110019Z:b4b9933d-1723-4b25-9c91-13f32cda521e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "80ac3204-38f0-4b43-862e-69a4ed7831c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:00:49 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1b851512-57ad-439e-94f4-829da93d2e42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14945" ], "x-ms-correlation-request-id": [ - "6465d9e8-fe5a-4dfa-9ddf-21e7785d4162" + "be700e93-64fe-4715-948d-45d19b8e3252" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025718Z:6465d9e8-fe5a-4dfa-9ddf-21e7785d4162" - ], - "Date": [ - "Thu, 19 Nov 2015 02:57:18 GMT" + "WESTEUROPE:20170801T110049Z:be700e93-64fe-4715-948d-45d19b8e3252" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "3c408491-a80d-4bb4-b5ec-d3bdee85eb08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:01:20 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ce9ca44c-b8a1-4c6d-8da9-1a225cc9f9ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14944" ], "x-ms-correlation-request-id": [ - "c3a58431-8936-4a8c-99b3-2478376ff1a5" + "c2d4e4aa-950e-4c57-a240-d80330922732" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025749Z:c3a58431-8936-4a8c-99b3-2478376ff1a5" - ], - "Date": [ - "Thu, 19 Nov 2015 02:57:48 GMT" + "WESTEUROPE:20170801T110120Z:c2d4e4aa-950e-4c57-a240-d80330922732" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "1fc7f161-59a4-4025-aca3-c1908dfee500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:01:50 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "76797bca-37aa-443d-9699-580509b3da4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14943" ], "x-ms-correlation-request-id": [ - "c8067e9a-f875-4f0d-819e-c5376916c3dc" + "3339574a-294a-4529-8c7a-76ccc5c1e0e4" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025819Z:c8067e9a-f875-4f0d-819e-c5376916c3dc" - ], - "Date": [ - "Thu, 19 Nov 2015 02:58:18 GMT" + "WESTEUROPE:20170801T110151Z:3339574a-294a-4529-8c7a-76ccc5c1e0e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "231ffe42-6e7a-4077-8faf-d505c2df7339" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:02:21 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0ca8b3a9-ab91-4925-8ad8-6a75c6dc1363" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14942" ], "x-ms-correlation-request-id": [ - "57f92377-184e-4f4c-8058-a136a193f628" + "e8c4d34b-35ea-40d7-8d2e-add05e5ac5b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025849Z:57f92377-184e-4f4c-8058-a136a193f628" - ], - "Date": [ - "Thu, 19 Nov 2015 02:58:48 GMT" + "WESTEUROPE:20170801T110222Z:e8c4d34b-35ea-40d7-8d2e-add05e5ac5b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "96159215-2b2c-48d3-9032-330ba3c0749d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:02:52 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c7da3310-5259-45f2-a96f-d6b2251ab6de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14941" ], "x-ms-correlation-request-id": [ - "c06ccd6b-49fb-411a-ba57-43593dfa37a4" + "d98c4b0b-3476-4d41-a910-7adcbcef9731" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025919Z:c06ccd6b-49fb-411a-ba57-43593dfa37a4" - ], - "Date": [ - "Thu, 19 Nov 2015 02:59:18 GMT" + "WESTEUROPE:20170801T110252Z:d98c4b0b-3476-4d41-a910-7adcbcef9731" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "37f50546-0ae8-4f48-9c8e-e24bc5cd00b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:03:22 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "28e64647-260b-4958-a1f4-78042be16bb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14940" ], "x-ms-correlation-request-id": [ - "3ee03d01-6f78-46a0-bd63-80466f28489c" + "8e3b721f-a4ad-480f-8b64-d97c5263388f" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T025949Z:3ee03d01-6f78-46a0-bd63-80466f28489c" - ], - "Date": [ - "Thu, 19 Nov 2015 02:59:48 GMT" + "WESTEUROPE:20170801T110323Z:8e3b721f-a4ad-480f-8b64-d97c5263388f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4a4951da-b97e-4ee2-9a65-3fd7a8f2a311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:03:53 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dbecc5a8-bb02-45ed-a670-afa17d068f57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14939" ], "x-ms-correlation-request-id": [ - "4466d796-9728-43e5-b664-7a419b85229b" + "db82be4e-11d4-4f50-b3f2-15fb780850d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030019Z:4466d796-9728-43e5-b664-7a419b85229b" - ], - "Date": [ - "Thu, 19 Nov 2015 03:00:19 GMT" + "WESTEUROPE:20170801T110354Z:db82be4e-11d4-4f50-b3f2-15fb780850d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "7d0f0c19-3060-42b6-88dc-623e891c729f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:04:23 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4c1bf41a-8c9c-460f-935e-ebf8230aaad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14938" ], "x-ms-correlation-request-id": [ - "fc8e5ec3-33e4-4269-8a47-04ac721daae2" + "97cef176-92b6-443b-a18b-7979280464b6" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030049Z:fc8e5ec3-33e4-4269-8a47-04ac721daae2" - ], - "Date": [ - "Thu, 19 Nov 2015 03:00:49 GMT" + "WESTEUROPE:20170801T110424Z:97cef176-92b6-443b-a18b-7979280464b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "818d991c-54b6-498a-9a9c-e0cbd4126b98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:04:55 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f8d5eb4f-1af1-4746-b4bf-5e69b0f734f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14999" ], "x-ms-correlation-request-id": [ - "4f3bff0f-2664-4e64-bf66-d9212817aa61" + "fb893a08-9553-41aa-8185-dfdbcd18ed3a" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030120Z:4f3bff0f-2664-4e64-bf66-d9212817aa61" - ], - "Date": [ - "Thu, 19 Nov 2015 03:01:19 GMT" + "WESTEUROPE:20170801T110455Z:fb893a08-9553-41aa-8185-dfdbcd18ed3a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "a90c5729-9444-451e-ad0a-c016f607d581" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:05:25 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d7823a0b-0554-4646-980c-b279e306fa19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14998" ], "x-ms-correlation-request-id": [ - "ae11c87c-b164-4283-b7af-cc76106ec4f3" + "ba5c893e-d1d3-4555-a799-29dfb40ecfff" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030150Z:ae11c87c-b164-4283-b7af-cc76106ec4f3" - ], - "Date": [ - "Thu, 19 Nov 2015 03:01:49 GMT" + "WESTEUROPE:20170801T110526Z:ba5c893e-d1d3-4555-a799-29dfb40ecfff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d6a64b1a-b077-4ffd-81b6-05b5b9958e25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:05:56 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b15dd8b3-5e46-4c67-abdd-757431180232" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14996" ], "x-ms-correlation-request-id": [ - "084ec89d-eb00-4f84-a102-b420d08c6a8f" + "8b00b4ab-25aa-4665-83c5-d2597fec83d7" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030220Z:084ec89d-eb00-4f84-a102-b420d08c6a8f" - ], - "Date": [ - "Thu, 19 Nov 2015 03:02:19 GMT" + "WESTEUROPE:20170801T110557Z:8b00b4ab-25aa-4665-83c5-d2597fec83d7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "8ee9e62e-364d-4f95-b97d-06a2529a53e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:06:27 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3bd69692-51ea-4ec4-af3b-f98fabd82090" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14995" ], "x-ms-correlation-request-id": [ - "ddb76919-16bc-40bf-9058-d0a9e129fabb" + "522ed6b3-284f-4253-869c-99216f83b37c" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030250Z:ddb76919-16bc-40bf-9058-d0a9e129fabb" - ], - "Date": [ - "Thu, 19 Nov 2015 03:02:50 GMT" + "WESTEUROPE:20170801T110627Z:522ed6b3-284f-4253-869c-99216f83b37c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "2f040428-7dec-4a27-827d-547c38248b39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:06:57 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "92bef759-5e33-43b9-b83f-517a349c8b31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14994" ], "x-ms-correlation-request-id": [ - "57fcccaf-3fee-42bc-a390-d41fb108c3a3" + "2e10b756-90c5-4340-b048-f234b9dc963b" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030320Z:57fcccaf-3fee-42bc-a390-d41fb108c3a3" - ], - "Date": [ - "Thu, 19 Nov 2015 03:03:19 GMT" + "WESTEUROPE:20170801T110658Z:2e10b756-90c5-4340-b048-f234b9dc963b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c4b52c71-9d2d-4e5a-bf94-d7933c467bd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:07:28 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2ef32221-fe20-4e0c-a28c-5a7fcc80fed7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14993" ], "x-ms-correlation-request-id": [ - "e3376a93-4952-4aec-b263-36e3e97aa44e" + "92f24d99-ec15-44ae-8f5a-0791012a56e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030350Z:e3376a93-4952-4aec-b263-36e3e97aa44e" - ], - "Date": [ - "Thu, 19 Nov 2015 03:03:50 GMT" + "WESTEUROPE:20170801T110728Z:92f24d99-ec15-44ae-8f5a-0791012a56e7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "2a581a64-3125-425a-8ee9-518000b29bc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:07:58 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b9cce1bb-faea-4c24-abf9-8048bd9a76b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14992" ], "x-ms-correlation-request-id": [ - "39dc3e54-9319-4928-a12b-82e56cde199d" + "af57d0be-e3af-49c6-bf6c-2a6ee74081d9" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030421Z:39dc3e54-9319-4928-a12b-82e56cde199d" - ], - "Date": [ - "Thu, 19 Nov 2015 03:04:20 GMT" + "WESTEUROPE:20170801T110759Z:af57d0be-e3af-49c6-bf6c-2a6ee74081d9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "42893afc-0d26-4f28-b8f4-ea07ca35c0cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:08:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d373d413-3db9-495e-9ff8-6d72b9dfb033" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14991" ], "x-ms-correlation-request-id": [ - "59f1f2e4-9e87-4a67-a173-26c2af3b764b" + "ab0ab16a-7408-4700-96d8-a911ed9b302b" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030451Z:59f1f2e4-9e87-4a67-a173-26c2af3b764b" - ], - "Date": [ - "Thu, 19 Nov 2015 03:04:51 GMT" + "WESTEUROPE:20170801T110830Z:ab0ab16a-7408-4700-96d8-a911ed9b302b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/b2cc47f8-773d-403a-b2ba-3c06a263826f?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjJjYzQ3ZjgtNzczZC00MDNhLWIyYmEtM2MwNmEyNjM4MjZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "9c718a5b-8212-4c8c-8398-8eac9c1afeb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:08:59 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5905827b-3190-44e8-b375-5482df6af1ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14990" ], "x-ms-correlation-request-id": [ - "34337016-f333-4a22-b9d9-cea9dcf08aac" + "33fae908-3c52-4f2c-a61e-8a872fedaa6a" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030521Z:34337016-f333-4a22-b9d9-cea9dcf08aac" - ], - "Date": [ - "Thu, 19 Nov 2015 03:05:20 GMT" + "WESTEUROPE:20170801T110900Z:33fae908-3c52-4f2c-a61e-8a872fedaa6a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1826" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "268c3f89-3c8a-418c-83fe-b72fcf1de5ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:09:00 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "20bee237-120b-477a-9f70-bbcd140b4a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14989" ], "x-ms-correlation-request-id": [ - "f44ec68a-a9d5-4f75-88f7-c328a71a1bc8" + "4f7a3c17-b0a9-432d-a0c5-32564c9ceb69" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030521Z:f44ec68a-a9d5-4f75-88f7-c328a71a1bc8" - ], - "Date": [ - "Thu, 19 Nov 2015 03:05:20 GMT" + "WESTEUROPE:20170801T110901Z:4f7a3c17-b0a9-432d-a0c5-32564c9ceb69" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "278b9ffa-ff3c-44bc-8eb4-119d663f8e72" + "00502fc3-cf7a-4e9c-b0e3-55dbdd941a27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1826" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "38edc1e4-4c03-4eae-be28-ba494c48e0f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:09:00 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6a140eef-daa0-4633-a31b-ff2dacbdf400" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14988" ], "x-ms-correlation-request-id": [ - "78661dfa-cde3-465d-ac35-18a65dbf990b" + "91f8f059-43a2-4746-826d-cce5e11e69c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030521Z:78661dfa-cde3-465d-ac35-18a65dbf990b" - ], - "Date": [ - "Thu, 19 Nov 2015 03:05:20 GMT" + "WESTEUROPE:20170801T110901Z:91f8f059-43a2-4746-826d-cce5e11e69c6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"f43fcee0-14eb-4d15-94a7-a543a5909d1c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"f43fcee0-14eb-4d15-94a7-a543a5909d1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"f8a1fdb1-63df-4db8-a80d-aff9e0485256\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"f8a1fdb1-63df-4db8-a80d-aff9e0485256\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1636" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "1ffae8be-a1ec-4875-ac41-ee4ac42b361c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:11:40 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "01c6d1e7-1efa-4fc7-8866-147ebf415599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14980" ], "x-ms-correlation-request-id": [ - "a799db13-671d-4e35-8989-6677fe96a5e5" + "05e10116-6509-4261-8bbc-bf89a92e563a" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030715Z:a799db13-671d-4e35-8989-6677fe96a5e5" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:15 GMT" + "WESTEUROPE:20170801T111140Z:05e10116-6509-4261-8bbc-bf89a92e563a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4159b438-ab8e-4ce6-abaf-ee10cb0491c6" + "bc477345-817b-4951-b990-138763f88a02" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4830\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"etag\": \"W/\\\"f43fcee0-14eb-4d15-94a7-a543a5909d1c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"etag\": \"W/\\\"f43fcee0-14eb-4d15-94a7-a543a5909d1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8015\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"etag\": \"W/\\\"f8a1fdb1-63df-4db8-a80d-aff9e0485256\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7945\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\",\r\n \"etag\": \"W/\\\"f8a1fdb1-63df-4db8-a80d-aff9e0485256\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1636" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "dd15a7a6-39bf-4bec-bb58-a74c3855fbc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:11:40 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a5350038-e26d-4a01-a986-0efab325732e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14979" ], "x-ms-correlation-request-id": [ - "49b10595-c2e3-4fe8-b2ee-940e873a8d05" + "03ed1f5d-a0ca-41c1-b205-b7cb402ba0df" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030715Z:49b10595-c2e3-4fe8-b2ee-940e873a8d05" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:15 GMT" + "WESTEUROPE:20170801T111141Z:03ed1f5d-a0ca-41c1-b205-b7cb402ba0df" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n }\r\n },\r\n \"name\": \"azsmnet7945\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\"\r\n },\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b4591b-e98c-46bd-aceb-79b1d576305d\"\r\n },\r\n \"etag\": \"W/\\\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2726" + "2645" ], "x-ms-client-request-id": [ - "461f328d-3cfa-49f2-a9f0-7a9510938219" + "83053355-3414-49c8-aeab-f0f74e39d344" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"ad1c2f22-8776-4874-be78-102641048670\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E0210746B4C34A3B7AE9043C2456669BA258F300D06092A864886F70D010101050004820100CE00D5D4636E6B78CC0A4AAD1631EDBA663B2042475C6E2FF4606356849620BD1C38C8263EBE82CDE2713A74AFF1E8FF8D288E05E00BB0F2BC14D76318F55F65118FCC0A51743EACB8332E8FF05BF4816324E0EFA43581777FC74416902025B096272B8C03534B2012059AA3BB68D018F173CF9449E3C692A25DCF2AF0C9073DF9BCBCBF9176CCBED9C2ED88D96D6A7F405AC27F709C35968A89229489FF04CBE4A32E8C833E6E3CD68AE3B2DD6C181F130F83002413EEF141FE3F1E92827A988EFE70B62DCD8E786D7E7852B4596650EC7E1C2A25FF9F57CB8A66A9A62D0024CFA77DAECFDCA8827BCF2186B7F9406B40FA119B4EE37C889B8B3C60AD9D4F86302B06092A864886F70D010701301406082A864886F70D03070408BA0A5D6E2A44AD1C80080D1A2C92CE7C8812\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"cd126226-d5cf-4eed-862e-de82a770c9b0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1763" + "1055" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4065,905 +4886,994 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 11:09:05 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "432d7bf3-ed0f-47af-abde-683f1d4d9614" + "e9876c50-a178-43b5-854a-9e15f65536ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/e9876c50-a178-43b5-854a-9e15f65536ca?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "8be9e72d-0aa8-4a19-ac53-e297ec6ae22f" + "f257c255-a0cb-4083-91a2-a6c80c866cb5" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030523Z:8be9e72d-0aa8-4a19-ac53-e297ec6ae22f" - ], - "Date": [ - "Thu, 19 Nov 2015 03:05:23 GMT" + "WESTEUROPE:20170801T110905Z:f257c255-a0cb-4083-91a2-a6c80c866cb5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworks/azsmnet2940/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/publicIPAddresses/azsmnet8510\"\r\n }\r\n },\r\n \"name\": \"azsmnet7945\",\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/ipConfigurations/azsmnet7945\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"b60427e1-aa57-4d3a-9f92-bfdf980e232b\"\r\n },\r\n \"etag\": \"W/\\\"9a974b0a-e59a-4d77-aa7a-ad8f65cbe31f\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b4591b-e98c-46bd-aceb-79b1d576305d\"\r\n },\r\n \"etag\": \"W/\\\"3bcb7ca6-d8b5-4dde-91dd-d2de96c5d16d\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2524" + "2443" ], "x-ms-client-request-id": [ - "26c6371d-db32-49bf-a0df-23fe00e6b42c" + "b6249d6a-dab0-4ef6-bd27-27ccce203600" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"fd771050-4e26-4e4c-9e55-da747e819a93\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E0210746B4C34A3B7AE9043C2456669BA258F300D06092A864886F70D010101050004820100CEFBDCA925A88AFFA84DA7841CDEA423044888958B71C3C3F93EFE5ECF1532C12A2CB848AB16676FE511773CDA6DC92B5ABB21D107D5593A7565F43B248A976D2C5C2C1CFB4D7FB1ABDAA734FF51ACBB2B9D0ECFFB3B62FBD654923132A7309DC54C3EED223078644782FEE7E928EC25680677AD7F77B73A565684B1B6FA211927DAE19AB7255D3141615B381E115930D4296103B5A5B6285BECF401D9294774AEC74661CBBB2882C1F48A18A975D35DD53314B33A4BDA52E3BD965B50F9F2722D3F1B375D07921488BC1505AB6890F2E9E8B49360E9B20E2DD9B48EB8857FDD97EED77BCDDDF0DDC4FF55A9A9F511DE052AE41D7549095060852E2830EABB70302B06092A864886F70D010701301406082A864886F70D0307040828676D7FF046DA858008BD5D5584047BC6CE\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"e296fb91-c89b-4206-acbf-aa4614d3e7c0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1763" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 11:11:41 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" + "1f05ac36-787f-44d2-8e13-1a0845a468e0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/1f05ac36-787f-44d2-8e13-1a0845a468e0?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "09576fd5-d2cb-4741-97b4-9365bdb7a771" + "ca7e100d-96f4-4c43-a6a9-fbedbd736721" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030715Z:09576fd5-d2cb-4741-97b4-9365bdb7a771" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:15 GMT" + "WESTEUROPE:20170801T111141Z:ca7e100d-96f4-4c43-a6a9-fbedbd736721" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/e9876c50-a178-43b5-854a-9e15f65536ca?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTk4NzZjNTAtYTE3OC00M2I1LTg1NGEtOWUxNWY2NTUzNmNhP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "2baf19b8-530c-4c25-ba07-7fc13298297e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:09:36 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dab72168-6050-4f31-b58e-50dce3347c30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14987" ], "x-ms-correlation-request-id": [ - "d8df9369-95f8-4152-94d6-bbc080b2d09f" + "e02302f9-392b-43e7-8fc5-9ade0d71f3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030533Z:d8df9369-95f8-4152-94d6-bbc080b2d09f" - ], - "Date": [ - "Thu, 19 Nov 2015 03:05:32 GMT" + "WESTEUROPE:20170801T110936Z:e02302f9-392b-43e7-8fc5-9ade0d71f3fc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"d8271d2b-c4df-45ff-93e7-2fba80f4f095\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d5513207-973d-4e13-91da-f00d4b0be44b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:09:36 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d077df9d-6c52-4e80-9278-259a92c77169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14986" ], "x-ms-correlation-request-id": [ - "249edc36-3ccb-4173-ad02-7057b0859c58" + "62a21b84-1cf8-411b-8caa-7cf856a016f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030603Z:249edc36-3ccb-4173-ad02-7057b0859c58" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:02 GMT" + "WESTEUROPE:20170801T110936Z:62a21b84-1cf8-411b-8caa-7cf856a016f6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c1ccceab-e922-4627-9890-3ffe4b3fdc09" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"e0b09a6f-b1ef-4a09-b136-804d282727aa\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"d8271d2b-c4df-45ff-93e7-2fba80f4f095\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1000" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "f79bf7d0-799e-4015-99c8-2c9f28896223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:09:37 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "52c7d7e4-1aa2-4326-892a-d60d4b1aeb80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14985" ], "x-ms-correlation-request-id": [ - "d55a01c5-4363-4ec5-a93f-4f01d1f8358e" + "e9489729-08b2-46db-ae11-8e8718e20f9d" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030604Z:d55a01c5-4363-4ec5-a93f-4f01d1f8358e" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:03 GMT" + "WESTEUROPE:20170801T110937Z:e9489729-08b2-46db-ae11-8e8718e20f9d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "77376735-a3f5-48bf-8855-ecfd0f01cd3a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"e0b09a6f-b1ef-4a09-b136-804d282727aa\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"8eaa6fb9-6edf-46e2-8946-8ef8887095f2\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Connecting\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1000" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "cadab39b-7bf8-49a0-9b3b-cbf21f36781a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:12 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "64a869ef-b335-4f05-9814-e9a69c00423b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14977" ], "x-ms-correlation-request-id": [ - "ed2a1aa0-2e1c-4530-8195-19a14d5f6ea2" + "7704554f-e80f-48bc-860c-675d3c5baeb6" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030604Z:ed2a1aa0-2e1c-4530-8195-19a14d5f6ea2" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:03 GMT" + "WESTEUROPE:20170801T111213Z:7704554f-e80f-48bc-860c-675d3c5baeb6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b748b922-5ecf-402b-8213-b8f34129f7f2" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"756cce66-58b3-42f9-a788-bd5ce73080b8\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"8eaa6fb9-6edf-46e2-8946-8ef8887095f2\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Connecting\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1000" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "0d468d0d-7e63-47f7-8c17-a3791ce0ff50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:12 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "58934b0d-19c3-4eba-a683-2c8d103fdc90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14976" ], "x-ms-correlation-request-id": [ - "1d1b08de-f7c2-4d91-85b4-b730fa3b44ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151119T030726Z:1d1b08de-f7c2-4d91-85b4-b730fa3b44ab" + "67a7efab-e088-44f1-9fc5-f9dc9380eb48" ], - "Date": [ - "Thu, 19 Nov 2015 03:07:25 GMT" + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T111213Z:67a7efab-e088-44f1-9fc5-f9dc9380eb48" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c96176ce-4058-4ca5-9611-f1f91ea3431b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzk2MTc2Y2UtNDA1OC00Y2E1LTk2MTEtZjFmOTFlYTM0MzFiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0a513ba5-529f-43dc-acad-c313f186b7af" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"756cce66-58b3-42f9-a788-bd5ce73080b8\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1000" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "912a4ac3-79d4-4014-a1d1-4bdeb7349a6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:10:07 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "23e84150-5502-4a7a-9f97-b23629008fd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14984" ], "x-ms-correlation-request-id": [ - "b7e48eba-d18a-49ff-b4e3-2ec1a15f6a88" + "77f58695-8631-4100-8b85-27a5813e0569" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030726Z:b7e48eba-d18a-49ff-b4e3-2ec1a15f6a88" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:25 GMT" + "WESTEUROPE:20170801T111008Z:77f58695-8631-4100-8b85-27a5813e0569" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c96176ce-4058-4ca5-9611-f1f91ea3431b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzk2MTc2Y2UtNDA1OC00Y2E1LTk2MTEtZjFmOTFlYTM0MzFiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "384351ab-0f87-447e-a641-9ab56cd65b9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:10:38 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "63fd05cc-c2e7-4a68-9a9e-46cda8fbc8b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14983" ], "x-ms-correlation-request-id": [ - "f14a1537-6623-4637-b4c0-c2bfeea309f6" + "d01e3ff8-e321-4557-a2aa-74019bbefc82" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030615Z:f14a1537-6623-4637-b4c0-c2bfeea309f6" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:14 GMT" + "WESTEUROPE:20170801T111039Z:d01e3ff8-e321-4557-a2aa-74019bbefc82" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c96176ce-4058-4ca5-9611-f1f91ea3431b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzk2MTc2Y2UtNDA1OC00Y2E1LTk2MTEtZjFmOTFlYTM0MzFiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c9ed425c-3098-4958-b256-88d7c68b7a08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:11:09 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "146cff49-2a85-4f85-a37d-88e4a7980eb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14982" ], "x-ms-correlation-request-id": [ - "7643e4a4-9214-4943-b4b1-3fd91634358e" + "9234c0cd-0113-4fc1-922a-dda45e17b682" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030645Z:7643e4a4-9214-4943-b4b1-3fd91634358e" - ], - "Date": [ - "Thu, 19 Nov 2015 03:06:44 GMT" + "WESTEUROPE:20170801T111109Z:9234c0cd-0113-4fc1-922a-dda45e17b682" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c96176ce-4058-4ca5-9611-f1f91ea3431b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzk2MTc2Y2UtNDA1OC00Y2E1LTk2MTEtZjFmOTFlYTM0MzFiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "a20e71f2-d4c4-44e7-8127-b606688835fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:11:39 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "387cf4fd-7cc2-4235-bf55-8119966feeeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14981" ], "x-ms-correlation-request-id": [ - "fe2d650d-5f0d-4622-b163-17873e77ace6" + "f1b7a77d-9e2c-453d-8f57-f73fba2f9c65" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030715Z:fe2d650d-5f0d-4622-b163-17873e77ace6" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:14 GMT" + "WESTEUROPE:20170801T111140Z:f1b7a77d-9e2c-453d-8f57-f73fba2f9c65" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/1f05ac36-787f-44d2-8e13-1a0845a468e0?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWYwNWFjMzYtNzg3Zi00NGQyLThlMTMtMWEwODQ1YTQ2OGUwP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b935fcbc-c851-4079-a175-b676bd1de5c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:11 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3f9bd917-81e3-4818-afca-4e0df095a021" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14978" ], "x-ms-correlation-request-id": [ - "51fff89f-5d9d-4d71-ba9c-cfce9506904e" + "af837127-35e6-4d1b-867b-4cc4747283f9" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030726Z:51fff89f-5d9d-4d71-ba9c-cfce9506904e" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:25 GMT" + "WESTEUROPE:20170801T111212Z:af837127-35e6-4d1b-867b-4cc4747283f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60d2bcf4-56c1-4030-b85d-4eaebfe9fa7e" + "1758d343-3f29-44bd-b36d-d9d06a91a9ec" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet5494\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494\",\r\n \"etag\": \"W/\\\"756cce66-58b3-42f9-a788-bd5ce73080b8\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3cc5ec-338b-42ab-a6c4-bfbf396a30a3\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"8eaa6fb9-6edf-46e2-8946-8ef8887095f2\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1043" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c6dcd92f-853e-4a02-9296-4e97cdad1fe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:13 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "87752cd1-fa21-45d1-8ecd-9f5a996493fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14975" ], "x-ms-correlation-request-id": [ - "3cc8662e-bd93-4219-be9c-cbcdf8f2e2b6" + "83e00eea-758b-4862-8eb6-329afbeff494" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030726Z:3cc8662e-bd93-4219-be9c-cbcdf8f2e2b6" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:26 GMT" + "WESTEUROPE:20170801T111213Z:83e00eea-758b-4862-8eb6-329afbeff494" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0594b789-956e-4d40-ae33-ffc7d4e30047" + "66f2938d-f513-44ea-942d-ee4a4a111034" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 11:12:45 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14972" ], "x-ms-request-id": [ - "d233c3f6-ae47-4e03-aeee-ea15b687ba69" + "41a89ddc-577b-44d1-93da-3d764cba9dfa" ], "x-ms-correlation-request-id": [ - "d233c3f6-ae47-4e03-aeee-ea15b687ba69" + "41a89ddc-577b-44d1-93da-3d764cba9dfa" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030807Z:d233c3f6-ae47-4e03-aeee-ea15b687ba69" + "WESTEUROPE:20170801T111246Z:41a89ddc-577b-44d1-93da-3d764cba9dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 19 Nov 2015 03:08:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-06-01", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015/connections?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODAxNS9jb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8df1df78-d143-4221-b9b9-3a50426c253c" + "6a3da417-6d22-44c9-8666-8d92be3aff0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet3787\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787\",\r\n \"etag\": \"W/\\\"8eaa6fb9-6edf-46e2-8946-8ef8887095f2\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7e8e0f-c488-41f0-8362-8712016c5695\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8015\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/localNetworkGateways/azsmnet6064\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56c95b9b-4460-4322-9a54-fd1d830bfd6b" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-06-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:13 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-06-01" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b06307e2-3cba-4390-b3bd-89eb75f779ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], "x-ms-correlation-request-id": [ - "6d2d24b7-bf2f-4e6e-bd3f-fb9561816b69" + "48e086b5-54ed-47d1-a3f7-41c57dcac31f" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030727Z:6d2d24b7-bf2f-4e6e-bd3f-fb9561816b69" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:26 GMT" + "WESTEUROPE:20170801T111214Z:48e086b5-54ed-47d1-a3f7-41c57dcac31f" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-06-01", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1248/providers/Microsoft.Network/connections/azsmnet3787?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTI0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDM3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dad762dc-9476-40d9-bf17-3375486a9d65" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "e3fdf8e1-bac6-4721-bf60-7033937d5c87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:15 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/3f201bca-e2e9-4e77-b052-aa7ea76bcb7a?api-version=2017-06-01" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "x-ms-request-id": [ + "3f201bca-e2e9-4e77-b052-aa7ea76bcb7a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/3f201bca-e2e9-4e77-b052-aa7ea76bcb7a?api-version=2017-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "6365dfad-fdd9-4de0-9433-f2bd5ea5cb2e" + "5977df9b-921e-464b-82f2-6cef9c71243d" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030737Z:6365dfad-fdd9-4de0-9433-f2bd5ea5cb2e" - ], - "Date": [ - "Thu, 19 Nov 2015 03:07:37 GMT" + "WESTEUROPE:20170801T111215Z:5977df9b-921e-464b-82f2-6cef9c71243d" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/3f201bca-e2e9-4e77-b052-aa7ea76bcb7a?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2YyMDFiY2EtZTJlOS00ZTc3LWIwNTItYWE3ZWE3NmJjYjdhP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "140f1c40-a9b4-4777-8dbb-5a64965be695" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 11:12:45 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "61e8f89b-8ffd-48a9-85de-591ddccf9297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14973" ], "x-ms-correlation-request-id": [ - "276f7185-73a5-43bd-a8d2-a072f6f7edfd" + "003f0efb-5958-4b28-913b-35a267172ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20151119T030807Z:276f7185-73a5-43bd-a8d2-a072f6f7edfd" - ], - "Date": [ - "Thu, 19 Nov 2015 03:08:07 GMT" + "WESTEUROPE:20170801T111246Z:003f0efb-5958-4b28-913b-35a267172ed0" ] }, "StatusCode": 200 @@ -4971,17 +5881,17 @@ ], "Names": { "VirtualNetworkGatewayConnectionOperationsApisTest": [ - "csmrg7047", - "azsmnet3822", - "azsmnet7350", - "azsmnet6654", - "azsmnet8152", - "azsmnet4830", - "azsmnet6576", - "azsmnet5494" + "csmrg1248", + "azsmnet6064", + "azsmnet8510", + "azsmnet5817", + "azsmnet2940", + "azsmnet8015", + "azsmnet7945", + "azsmnet3787" ] }, "Variables": { - "SubscriptionId": "64229c92-175a-4eba-a2fd-ee1f9e29766e" + "SubscriptionId": "947d47b4-7883-4bb9-9d85-c5e8e2f572ce" } -} +} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index 601f4b7c10cf..b50af86550b2 100644 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ca9fb6d-cc45-4891-a6a0-aa73ba8bce34" + "86ac14a8-ffa2-4a13-936d-55023cbdb57f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"routeTables\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/privateAccessServices\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:13 GMT" + "Tue, 01 Aug 2017 09:46:48 GMT" ], "Pragma": [ "no-cache" @@ -37,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14992" ], "x-ms-request-id": [ - "c681ff6d-c2f6-4ae7-a02f-9418a8e39012" + "74846848-6d5e-4600-b7f8-d243668d68a4" ], "x-ms-correlation-request-id": [ - "c681ff6d-c2f6-4ae7-a02f-9418a8e39012" + "74846848-6d5e-4600-b7f8-d243668d68a4" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221113Z:c681ff6d-c2f6-4ae7-a02f-9418a8e39012" + "WESTEUROPE:20170801T094649Z:74846848-6d5e-4600-b7f8-d243668d68a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,10 +56,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/csmrg25?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourcegroups/csmrg1224?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTIyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -67,19 +68,20 @@ "29" ], "x-ms-client-request-id": [ - "80c927f1-9f01-4e34-a47f-248eaec4798e" + "907cdf4f-3431-4f51-9385-e99c7a755baf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25\",\r\n \"name\": \"csmrg25\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224\",\r\n \"name\": \"csmrg1224\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "167" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,22 +93,22 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:14 GMT" + "Tue, 01 Aug 2017 09:46:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "6de74eb7-7944-4c2c-b7db-53f89c4db686" + "dd71c657-e26b-4e79-a16e-878085289524" ], "x-ms-correlation-request-id": [ - "6de74eb7-7944-4c2c-b7db-53f89c4db686" + "dd71c657-e26b-4e79-a16e-878085289524" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221114Z:6de74eb7-7944-4c2c-b7db-53f89c4db686" + "WESTEUROPE:20170801T094652Z:dd71c657-e26b-4e79-a16e-878085289524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,10 +117,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ1NDM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8018\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +129,20 @@ "206" ], "x-ms-client-request-id": [ - "e2ccca5c-3f79-4201-b4a4-f61666b87f04" + "eeb4223b-aeec-4510-a3a7-e8941b041d34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4721\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\",\r\n \"etag\": \"W/\\\"d4f5634b-c61a-43f8-9e8a-1730b50c5c06\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3ff45565-6752-4ef6-8945-fb5c4ff4643c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\",\r\n \"fqdn\": \"azsmnet6884.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4543\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\",\r\n \"etag\": \"W/\\\"33756bc0-f521-4385-8fc0-e6aa7dbc5ef0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"651b08f5-0fbc-4a5d-b0ca-c6e02f43c26a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8018\",\r\n \"fqdn\": \"azsmnet8018.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "709" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,47 +154,48 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:15 GMT" + "Tue, 01 Aug 2017 09:46:57 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" + "6a51d766-5119-4794-9a97-35fa163444f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/6a51d766-5119-4794-9a97-35fa163444f3?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "3edd0d16-bc41-46b1-8257-2091e02ac337" + "3bb1515c-c91b-4261-b63a-62e1cc34e6cb" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221116Z:3edd0d16-bc41-46b1-8257-2091e02ac337" + "WESTEUROPE:20170801T094657Z:3bb1515c-c91b-4261-b63a-62e1cc34e6cb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/6a51d766-5119-4794-9a97-35fa163444f3?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmE1MWQ3NjYtNTExOS00Nzk0LTlhOTctMzVmYTE2MzQ0NGYzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -206,7 +210,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:46 GMT" + "Tue, 01 Aug 2017 09:47:27 GMT" ], "Pragma": [ "no-cache" @@ -222,34 +226,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f95ae1fa-f266-4296-98c0-a9e014b7decc" + "28d2a0a6-a6b9-44fc-9426-f66188ea5e10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14993" ], "x-ms-correlation-request-id": [ - "ed9a911a-e066-4610-8e48-7f17c475e055" + "791c679a-6066-47f3-bb03-fdac7c24452a" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221146Z:ed9a911a-e066-4610-8e48-7f17c475e055" + "WESTEUROPE:20170801T094728Z:791c679a-6066-47f3-bb03-fdac7c24452a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ1NDM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4721\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\",\r\n \"etag\": \"W/\\\"d5d07579-a9a2-4724-a269-06a0da44c056\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ff45565-6752-4ef6-8945-fb5c4ff4643c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\",\r\n \"fqdn\": \"azsmnet6884.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4543\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\",\r\n \"etag\": \"W/\\\"56573492-4eaf-4bf8-bf6b-b5429a836a25\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"651b08f5-0fbc-4a5d-b0ca-c6e02f43c26a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8018\",\r\n \"fqdn\": \"azsmnet8018.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -261,7 +266,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:46 GMT" + "Tue, 01 Aug 2017 09:47:28 GMT" ], "Pragma": [ "no-cache" @@ -270,7 +275,7 @@ "chunked" ], "ETag": [ - "W/\"d5d07579-a9a2-4724-a269-06a0da44c056\"" + "W/\"56573492-4eaf-4bf8-bf6b-b5429a836a25\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -280,40 +285,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7cbe62a0-3676-4001-9bdf-20b025fde098" + "16dcfb57-56a1-414b-9f33-3d0ac6b750f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14992" ], "x-ms-correlation-request-id": [ - "30fa310e-d42e-43ec-a2df-857729adbf2b" + "a2075b42-0704-41c0-b66d-9ea157118e23" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221146Z:30fa310e-d42e-43ec-a2df-857729adbf2b" + "WESTEUROPE:20170801T094729Z:a2075b42-0704-41c0-b66d-9ea157118e23" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ1NDM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86d994ec-cb4b-46c7-9a41-0e5116d92289" + "f1c11101-c1ba-406a-8c72-1398ae971356" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4721\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\",\r\n \"etag\": \"W/\\\"d5d07579-a9a2-4724-a269-06a0da44c056\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ff45565-6752-4ef6-8945-fb5c4ff4643c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\",\r\n \"fqdn\": \"azsmnet6884.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4543\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\",\r\n \"etag\": \"W/\\\"56573492-4eaf-4bf8-bf6b-b5429a836a25\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"651b08f5-0fbc-4a5d-b0ca-c6e02f43c26a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8018\",\r\n \"fqdn\": \"azsmnet8018.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +331,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:46 GMT" + "Tue, 01 Aug 2017 09:47:28 GMT" ], "Pragma": [ "no-cache" @@ -334,7 +340,7 @@ "chunked" ], "ETag": [ - "W/\"d5d07579-a9a2-4724-a269-06a0da44c056\"" + "W/\"56573492-4eaf-4bf8-bf6b-b5429a836a25\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -344,28 +350,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "78a96e6b-f4dc-4407-871a-ce81f17bf181" + "0b16f3e3-b88c-44f0-9e4d-60dfbf05f888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14991" ], "x-ms-correlation-request-id": [ - "4750e3a0-e1f7-4f9e-a294-ff14944d2a15" + "4b86979f-8215-46c8-a27d-98de47659d77" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221146Z:4750e3a0-e1f7-4f9e-a294-ff14944d2a15" + "WESTEUROPE:20170801T094729Z:4b86979f-8215-46c8-a27d-98de47659d77" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2647\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -374,19 +380,20 @@ "401" ], "x-ms-client-request-id": [ - "7fbd704b-3dc7-446a-94b6-07683c394d70" + "dbacdb1c-c1f5-4135-8648-b0647c9f82d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5244\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244\",\r\n \"etag\": \"W/\\\"a2b09180-ee2d-4cbc-8981-274b75ee3866\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9df18515-c098-496b-9db7-4a928286534b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\",\r\n \"etag\": \"W/\\\"a2b09180-ee2d-4cbc-8981-274b75ee3866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2921\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921\",\r\n \"etag\": \"W/\\\"5cdebad8-f71b-46cb-8ee4-fe573fa93bb6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6d0b988e-7da2-44c2-909a-5df8006894f3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2647\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\",\r\n \"etag\": \"W/\\\"5cdebad8-f71b-46cb-8ee4-fe573fa93bb6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1049" + "1088" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,47 +405,48 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:11:47 GMT" + "Tue, 01 Aug 2017 09:47:30 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "33b0df37-361c-4610-a62c-2d0bd11d537e" + "2104b532-7f9d-4250-94e9-718e4ac59565" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2104b532-7f9d-4250-94e9-718e4ac59565?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "b1a4f76d-f778-4432-99aa-6290a2fdb367" + "c6cd2a10-34fd-45ba-a358-5bd169a2ee8a" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221147Z:b1a4f76d-f778-4432-99aa-6290a2fdb367" + "WESTEUROPE:20170801T094731Z:c6cd2a10-34fd-45ba-a358-5bd169a2ee8a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2104b532-7f9d-4250-94e9-718e4ac59565?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjEwNGI1MzItN2Y5ZC00MjUwLTk0ZTktNzE4ZTRhYzU5NTY1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -453,7 +461,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:16 GMT" + "Tue, 01 Aug 2017 09:48:02 GMT" ], "Pragma": [ "no-cache" @@ -469,34 +477,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9cc3e1a4-b0ec-4385-9c8d-3e995ce1c792" + "1fca87de-5ec2-4a02-b997-faaf0b344ada" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14990" ], "x-ms-correlation-request-id": [ - "a89ff352-4a11-4ab1-bcd9-11e42716149a" + "7b265f4e-43fd-4895-9f88-3dee6fe291cb" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221217Z:a89ff352-4a11-4ab1-bcd9-11e42716149a" + "WESTEUROPE:20170801T094802Z:7b265f4e-43fd-4895-9f88-3dee6fe291cb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5244\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244\",\r\n \"etag\": \"W/\\\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9df18515-c098-496b-9db7-4a928286534b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\",\r\n \"etag\": \"W/\\\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2921\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921\",\r\n \"etag\": \"W/\\\"8c5da4cd-26c9-4b06-8a30-7f0247878206\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6d0b988e-7da2-44c2-909a-5df8006894f3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2647\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\",\r\n \"etag\": \"W/\\\"8c5da4cd-26c9-4b06-8a30-7f0247878206\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -508,7 +517,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:17 GMT" + "Tue, 01 Aug 2017 09:48:02 GMT" ], "Pragma": [ "no-cache" @@ -517,7 +526,7 @@ "chunked" ], "ETag": [ - "W/\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\"" + "W/\"8c5da4cd-26c9-4b06-8a30-7f0247878206\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -527,40 +536,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f861a52-d4ee-48a9-9835-0d0f1a0d67bf" + "cb3a420b-c6b5-472a-af50-00beeb975f14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14989" ], "x-ms-correlation-request-id": [ - "3d64edf4-5014-4f7e-874e-bdfb29a25391" + "b4b3526d-de5c-4d4d-a6f5-7cb5ff6bc757" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221217Z:3d64edf4-5014-4f7e-874e-bdfb29a25391" + "WESTEUROPE:20170801T094802Z:b4b3526d-de5c-4d4d-a6f5-7cb5ff6bc757" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyOTIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb447507-abbc-47c7-878e-0300612d8b1a" + "b8125209-fe93-4af5-83a0-b8fb30a5d431" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5244\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244\",\r\n \"etag\": \"W/\\\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9df18515-c098-496b-9db7-4a928286534b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\",\r\n \"etag\": \"W/\\\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2921\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921\",\r\n \"etag\": \"W/\\\"8c5da4cd-26c9-4b06-8a30-7f0247878206\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6d0b988e-7da2-44c2-909a-5df8006894f3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2647\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\",\r\n \"etag\": \"W/\\\"8c5da4cd-26c9-4b06-8a30-7f0247878206\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -572,7 +582,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:17 GMT" + "Tue, 01 Aug 2017 09:48:02 GMT" ], "Pragma": [ "no-cache" @@ -581,7 +591,7 @@ "chunked" ], "ETag": [ - "W/\"5a5fcadf-85db-4412-ae2f-9f547c49ba15\"" + "W/\"8c5da4cd-26c9-4b06-8a30-7f0247878206\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -591,49 +601,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "40b26ddd-23d1-4ee2-bb7e-c5cfebb8925a" + "b8b11da7-b0b2-43af-bc3f-ec1cd03bf080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14988" ], "x-ms-correlation-request-id": [ - "b69ceb32-b785-4f53-970e-b20d020633d5" + "21e26ddf-ba0e-40a0-b619-6612f294da83" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221217Z:b69ceb32-b785-4f53-970e-b20d020633d5" + "WESTEUROPE:20170801T094803Z:21e26ddf-ba0e-40a0-b619-6612f294da83" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "469" + "471" ], "x-ms-client-request-id": [ - "03da1eed-c72e-4560-afd4-af61ee1adfc7" + "e3d57483-4db6-4914-8e6a-e56f43315b7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1458" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,7 +656,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:22 GMT" + "Tue, 01 Aug 2017 09:48:06 GMT" ], "Pragma": [ "no-cache" @@ -655,49 +666,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" + "a478ef4c-ab44-47a8-b71a-7b50b3cf96dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/a478ef4c-ab44-47a8-b71a-7b50b3cf96dd?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "e4963c52-bfab-40f5-8ac8-a629c8e1af6a" + "aba81ef5-c35a-418a-998e-ee54eef2d54f" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221223Z:e4963c52-bfab-40f5-8ac8-a629c8e1af6a" + "WESTEUROPE:20170801T094806Z:aba81ef5-c35a-418a-998e-ee54eef2d54f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6792\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet994\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3063" + "2851" ], "x-ms-client-request-id": [ - "4258ec50-8885-4a53-a900-dea8b7124642" + "b8a105fd-5be4-4bc1-aad0-1a70e929a811" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +721,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:26 GMT" + "Tue, 01 Aug 2017 09:48:15 GMT" ], "Pragma": [ "no-cache" @@ -725,37 +737,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" + "68b18375-2c29-486f-8ce8-44d2c892b479" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/68b18375-2c29-486f-8ce8-44d2c892b479?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-correlation-request-id": [ - "62f50f18-9d40-4816-ad00-e58eeccd52e3" + "72b77f73-484d-4603-85c8-24143e9fa0da" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221227Z:62f50f18-9d40-4816-ad00-e58eeccd52e3" + "WESTEUROPE:20170801T094816Z:72b77f73-484d-4603-85c8-24143e9fa0da" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -767,7 +780,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:22 GMT" + "Tue, 01 Aug 2017 09:48:06 GMT" ], "Pragma": [ "no-cache" @@ -776,7 +789,7 @@ "chunked" ], "ETag": [ - "W/\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\"" + "W/\"1785f41a-8afc-4e16-84ac-6d22f214adf0\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -786,40 +799,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e37804ff-8c7f-4363-a822-b9f60c448366" + "cc4ed64a-2aee-479c-a053-e40d4448271f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14987" ], "x-ms-correlation-request-id": [ - "445ebe06-e71f-4231-88d9-fa6f4b935009" + "413e6635-6440-443a-acf4-8b8d4747a194" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221223Z:445ebe06-e71f-4231-88d9-fa6f4b935009" + "WESTEUROPE:20170801T094806Z:413e6635-6440-443a-acf4-8b8d4747a194" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17fd5581-234e-41d5-8c7f-76ae8939d2c2" + "9c771a1b-d2c9-4ef9-a8de-89e2c746c7ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1785f41a-8afc-4e16-84ac-6d22f214adf0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -831,7 +845,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:22 GMT" + "Tue, 01 Aug 2017 09:48:06 GMT" ], "Pragma": [ "no-cache" @@ -840,7 +854,7 @@ "chunked" ], "ETag": [ - "W/\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\"" + "W/\"1785f41a-8afc-4e16-84ac-6d22f214adf0\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -850,34 +864,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c1fe7c31-754a-4902-b21c-3ec0e7158ae7" + "0684c899-47e3-4fc3-9748-a26017740d1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14986" ], "x-ms-correlation-request-id": [ - "1b60434f-e1a5-47bd-84c6-ec06ef8fe5cb" + "e8f6a72e-c80a-456e-9713-a25535c507a0" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221223Z:1b60434f-e1a5-47bd-84c6-ec06ef8fe5cb" + "WESTEUROPE:20170801T094807Z:e8f6a72e-c80a-456e-9713-a25535c507a0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -889,7 +904,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:26 GMT" + "Tue, 01 Aug 2017 09:48:15 GMT" ], "Pragma": [ "no-cache" @@ -898,7 +913,7 @@ "chunked" ], "ETag": [ - "W/\"9689e9f5-8434-4eee-b77b-10992d43d21f\"" + "W/\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -908,40 +923,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0c3e8b92-c107-4fd1-900b-840ce08216f1" + "7bbd156a-d9f3-4a65-b3aa-956b8d711663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14979" ], "x-ms-correlation-request-id": [ - "90fd1174-127d-457d-b660-b7ea2ffae192" + "aebe0ab0-b5f2-47c4-92cb-e06375f7d0ef" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221227Z:90fd1174-127d-457d-b660-b7ea2ffae192" + "WESTEUROPE:20170801T094816Z:aebe0ab0-b5f2-47c4-92cb-e06375f7d0ef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc4ebe3-7b39-4a85-bc8a-861db4bfdcac" + "7ac40a4b-e116-4f8e-b3aa-d32788f21818" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5338\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9689e9f5-8434-4eee-b77b-10992d43d21f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -953,7 +969,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:28 GMT" + "Tue, 01 Aug 2017 09:48:17 GMT" ], "Pragma": [ "no-cache" @@ -962,7 +978,7 @@ "chunked" ], "ETag": [ - "W/\"9689e9f5-8434-4eee-b77b-10992d43d21f\"" + "W/\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -972,49 +988,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1e3d5f2d-8ea6-4336-8ef4-7ea2e5b3f77d" + "70ca8c43-c1e0-4fb3-918d-35ac31cb83a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14976" ], "x-ms-correlation-request-id": [ - "ee09e14c-7df9-4a28-ba55-a311c2eab9af" + "42f8a7e4-f9ee-4e8c-973a-2c6b6e19f938" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:ee09e14c-7df9-4a28-ba55-a311c2eab9af" + "WESTEUROPE:20170801T094817Z:42f8a7e4-f9ee-4e8c-973a-2c6b6e19f938" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "469" + "471" ], "x-ms-client-request-id": [ - "978a7645-cbe8-4484-bb3e-85a8240a5328" + "72e2f327-3030-4c86-90cd-3ca92387d05c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1458" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1026,7 +1043,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:23 GMT" + "Tue, 01 Aug 2017 09:48:08 GMT" ], "Pragma": [ "no-cache" @@ -1036,49 +1053,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7efab2e5-175c-433e-9f27-b08984133322" + "41e5698a-29ef-4f82-be0c-f33c59d26b24" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/41e5698a-29ef-4f82-be0c-f33c59d26b24?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "4ce6a94b-486b-40d6-99fd-a8ff825776b3" + "1e04b9f8-e3ed-4731-9e29-7c3827f8e626" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221224Z:4ce6a94b-486b-40d6-99fd-a8ff825776b3" + "WESTEUROPE:20170801T094808Z:1e04b9f8-e3ed-4731-9e29-7c3827f8e626" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6792\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2128" + "1915" ], "x-ms-client-request-id": [ - "291f09ab-f4f2-4a0a-b4cd-929d0c10d581" + "2063d510-3c95-4b6c-b74c-cd8791de0a49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1090,7 +1108,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:27 GMT" + "Tue, 01 Aug 2017 09:48:16 GMT" ], "Pragma": [ "no-cache" @@ -1106,37 +1124,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b45499d-e838-4b4e-9ce1-01e6d473764c" + "ae59e077-f673-437d-8b3d-065f9a2354cb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/ae59e077-f673-437d-8b3d-065f9a2354cb?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1190" ], "x-ms-correlation-request-id": [ - "af65e1b6-e6e5-4489-8639-1ea556b1ee9e" + "b520d000-8ed1-4362-b499-cb4cb157a8f9" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221228Z:af65e1b6-e6e5-4489-8639-1ea556b1ee9e" + "WESTEUROPE:20170801T094816Z:b520d000-8ed1-4362-b499-cb4cb157a8f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1148,7 +1167,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:23 GMT" + "Tue, 01 Aug 2017 09:48:08 GMT" ], "Pragma": [ "no-cache" @@ -1157,7 +1176,7 @@ "chunked" ], "ETag": [ - "W/\"df2e5d77-c323-4f7b-897f-e70ad4299002\"" + "W/\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1167,40 +1186,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e9f9d352-bdd7-4d66-85d1-66afb9e38834" + "9354fdfb-3dc6-4889-a9db-f2f844a2c3e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14985" ], "x-ms-correlation-request-id": [ - "775a0567-89e1-4f24-9113-6d6f81e5af37" + "5a995822-8a6f-41b4-90af-743f124d744a" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221224Z:775a0567-89e1-4f24-9113-6d6f81e5af37" + "WESTEUROPE:20170801T094809Z:5a995822-8a6f-41b4-90af-743f124d744a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6882c370-3563-4978-ada0-6a34a2dbcdbb" + "546d17c9-b935-48bf-b359-c4e7139492d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1212,7 +1232,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:23 GMT" + "Tue, 01 Aug 2017 09:48:09 GMT" ], "Pragma": [ "no-cache" @@ -1221,7 +1241,7 @@ "chunked" ], "ETag": [ - "W/\"df2e5d77-c323-4f7b-897f-e70ad4299002\"" + "W/\"cb6bfb74-f17e-45a7-9c67-ceba17d553a1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1231,34 +1251,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "82748a2a-356e-4a10-938d-02d057cee414" + "f7a7fea8-470c-4a67-a69e-c69b361309b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14984" ], "x-ms-correlation-request-id": [ - "bca703ed-4964-4972-a32f-38e25e068e96" + "75be3e36-54c3-4374-bf08-9cb674451273" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221224Z:bca703ed-4964-4972-a32f-38e25e068e96" + "WESTEUROPE:20170801T094809Z:75be3e36-54c3-4374-bf08-9cb674451273" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1270,7 +1291,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:27 GMT" + "Tue, 01 Aug 2017 09:48:16 GMT" ], "Pragma": [ "no-cache" @@ -1279,7 +1300,7 @@ "chunked" ], "ETag": [ - "W/\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\"" + "W/\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1289,40 +1310,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1cef1057-0d39-4184-b727-2afdaf1b41cc" + "310df6e5-aab2-40a2-ac09-28651c5e7c32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14978" ], "x-ms-correlation-request-id": [ - "4f80df98-321a-4aee-8b0f-7166a3aee2a9" + "0e44a1e3-1e7a-440f-82ea-b8974242b1d1" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221228Z:4f80df98-321a-4aee-8b0f-7166a3aee2a9" + "WESTEUROPE:20170801T094816Z:0e44a1e3-1e7a-440f-82ea-b8974242b1d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "041dd4cc-dafb-4273-b8bc-595281bf0fee" + "15b0dca9-b336-480b-bb07-3a19c77051d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5719\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1334,7 +1356,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:28 GMT" + "Tue, 01 Aug 2017 09:48:17 GMT" ], "Pragma": [ "no-cache" @@ -1343,7 +1365,7 @@ "chunked" ], "ETag": [ - "W/\"8573d5f3-66fe-4251-8b9d-8fb209aa0d0d\"" + "W/\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1353,49 +1375,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4d2ce192-a07f-4af3-af96-ae56058101bc" + "7a594ad3-28ba-4869-9278-b52f56fc60c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14975" ], "x-ms-correlation-request-id": [ - "a58a58ff-7e02-43fc-9146-84d780b52a6d" + "42605448-0c5e-4e6b-aca6-c150b8878cf5" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:a58a58ff-7e02-43fc-9146-84d780b52a6d" + "WESTEUROPE:20170801T094817Z:42605448-0c5e-4e6b-aca6-c150b8878cf5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "469" + "471" ], "x-ms-client-request-id": [ - "92b2dfc5-462a-4423-a6f1-e0e02b915c81" + "0afb2a31-73a5-4725-ad09-87ce09e4e9ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1458" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1407,7 +1430,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:24 GMT" + "Tue, 01 Aug 2017 09:48:11 GMT" ], "Pragma": [ "no-cache" @@ -1417,49 +1440,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "278e7e1b-2137-4663-9235-2bad3fdfc102" + "9d1f13e9-24ae-484b-b5af-07cfd35ea146" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/9d1f13e9-24ae-484b-b5af-07cfd35ea146?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "1f98b8da-f3de-46c4-b939-1bf687a71d84" + "a2b57122-ad2c-4869-bac5-1034cd86390a" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221225Z:1f98b8da-f3de-46c4-b939-1bf687a71d84" + "WESTEUROPE:20170801T094811Z:a2b57122-ad2c-4869-bac5-1034cd86390a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2498\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2289" + "2369" ], "x-ms-client-request-id": [ - "9cc96a23-f685-411c-94d6-56dd677bae34" + "9ec31256-97d0-4a78-942f-c5f1aaca1339" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1471,7 +1495,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:28 GMT" + "Tue, 01 Aug 2017 09:48:16 GMT" ], "Pragma": [ "no-cache" @@ -1487,37 +1511,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" + "d9b234bd-f9c5-47f8-8a7b-b96ab557c953" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/d9b234bd-f9c5-47f8-8a7b-b96ab557c953?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1189" ], "x-ms-correlation-request-id": [ - "0433fa1d-eff3-43a1-ad33-045e75f0e29e" + "17aae579-52db-4f52-ad00-6c1b7a8810e9" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:0433fa1d-eff3-43a1-ad33-045e75f0e29e" + "WESTEUROPE:20170801T094817Z:17aae579-52db-4f52-ad00-6c1b7a8810e9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1529,7 +1554,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:24 GMT" + "Tue, 01 Aug 2017 09:48:11 GMT" ], "Pragma": [ "no-cache" @@ -1538,7 +1563,7 @@ "chunked" ], "ETag": [ - "W/\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\"" + "W/\"6b361970-4945-49f0-ae90-d0735ba91936\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1548,40 +1573,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c0e6881-1755-4501-b13a-71ac30efb095" + "3ab360e1-d824-453c-a663-71f923288b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14983" ], "x-ms-correlation-request-id": [ - "8647af61-5ae1-4af6-ae16-0ba354bb0549" + "e2632f2a-07a9-45bb-9f5c-281dd82da103" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221225Z:8647af61-5ae1-4af6-ae16-0ba354bb0549" + "WESTEUROPE:20170801T094811Z:e2632f2a-07a9-45bb-9f5c-281dd82da103" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a32efc-8ed1-4ebd-a873-0f3778d903aa" + "d3154724-8744-440a-8fbf-24739f409eee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6b361970-4945-49f0-ae90-d0735ba91936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1593,7 +1619,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:24 GMT" + "Tue, 01 Aug 2017 09:48:11 GMT" ], "Pragma": [ "no-cache" @@ -1602,7 +1628,7 @@ "chunked" ], "ETag": [ - "W/\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\"" + "W/\"6b361970-4945-49f0-ae90-d0735ba91936\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1612,34 +1638,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "df17b4b1-a28c-4364-82b6-f8c4bcfed860" + "856ab686-f8e3-4a17-87a8-ad7aaaa9d984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14982" ], "x-ms-correlation-request-id": [ - "9c5d2f95-20ab-4ef1-a6ff-6b233f823df1" + "98bc8047-8a5a-4ce6-9b79-63100102dc2b" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221225Z:9c5d2f95-20ab-4ef1-a6ff-6b233f823df1" + "WESTEUROPE:20170801T094812Z:98bc8047-8a5a-4ce6-9b79-63100102dc2b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1651,7 +1678,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:28 GMT" + "Tue, 01 Aug 2017 09:48:16 GMT" ], "Pragma": [ "no-cache" @@ -1660,7 +1687,7 @@ "chunked" ], "ETag": [ - "W/\"9b527227-ea64-4eed-8b03-1c3e032d46e7\"" + "W/\"54f82840-6bd7-4dba-809c-5e43a413d53b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1670,40 +1697,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa12e217-3275-47aa-b9e1-4a99e23d5c8a" + "068d8184-63d4-4b43-9c1a-095e9aabe9c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14977" ], "x-ms-correlation-request-id": [ - "72d899c9-be23-4d05-ad5d-5cf238005413" + "91309102-3aae-40db-9d3c-e5e597da3e5c" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:72d899c9-be23-4d05-ad5d-5cf238005413" + "WESTEUROPE:20170801T094817Z:91309102-3aae-40db-9d3c-e5e597da3e5c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04f40ca0-7e3d-4ff9-b4cb-0ba8ed7bacb5" + "ab1d9643-4556-4fc0-914b-83296851c6ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3894\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"9b527227-ea64-4eed-8b03-1c3e032d46e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1715,7 +1743,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:28 GMT" + "Tue, 01 Aug 2017 09:48:17 GMT" ], "Pragma": [ "no-cache" @@ -1724,7 +1752,7 @@ "chunked" ], "ETag": [ - "W/\"9b527227-ea64-4eed-8b03-1c3e032d46e7\"" + "W/\"54f82840-6bd7-4dba-809c-5e43a413d53b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1734,49 +1762,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c55b0f12-d0d6-493f-821d-ad591593ba3e" + "5bd4a0b5-d756-428e-9f99-2d27e519aab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14974" ], "x-ms-correlation-request-id": [ - "25d3155f-aed9-447c-94c0-bfbd91fc7327" + "5e9c514c-7334-4ac0-9ac8-7edb99c29dcc" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:25d3155f-aed9-447c-94c0-bfbd91fc7327" + "WESTEUROPE:20170801T094818Z:5e9c514c-7334-4ac0-9ac8-7edb99c29dcc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\"\r\n }\r\n },\r\n \"name\": \"azsmnet733\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet5508\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet9011\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet994\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet2498\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2744" + "2751" ], "x-ms-client-request-id": [ - "4f7f8765-9b17-4d5c-82c4-50acb9ab3924" + "8a136623-d35b-4465-8caa-318aa01fea43" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3522\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"350ca240-548d-42e3-b2dc-a15b8da28a37\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4688\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39d500e6-c49e-49d4-828f-cbb3cd2171e6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet733\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet6792\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet5508\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9011\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet994\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2498\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6257" + "6285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1788,7 +1817,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:25 GMT" + "Tue, 01 Aug 2017 09:48:13 GMT" ], "Pragma": [ "no-cache" @@ -1798,37 +1827,38 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f8b75ac4-426a-4583-9e9c-4676d5661dfd" + "1f080d23-cc3e-4355-8c85-d8bcff52c48a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/1f080d23-cc3e-4355-8c85-d8bcff52c48a?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "b9a231eb-de7e-4eb7-a55d-6a1bbc1b61af" + "9a025f7f-4896-4763-b1cb-46bf908007ff" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221226Z:b9a231eb-de7e-4eb7-a55d-6a1bbc1b61af" + "WESTEUROPE:20170801T094814Z:9a025f7f-4896-4763-b1cb-46bf908007ff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3522\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"350ca240-548d-42e3-b2dc-a15b8da28a37\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4688\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39d500e6-c49e-49d4-828f-cbb3cd2171e6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet733\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet6792\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet5508\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9011\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet994\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2498\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,7 +1870,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:25 GMT" + "Tue, 01 Aug 2017 09:48:14 GMT" ], "Pragma": [ "no-cache" @@ -1849,7 +1879,7 @@ "chunked" ], "ETag": [ - "W/\"7fdcc4dc-873e-4005-bf1a-68b732624f73\"" + "W/\"2043c052-d002-4c99-9855-94536c9e15c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1859,40 +1889,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7490b311-1631-4f4a-a398-950cb45b0391" + "8c02bd3d-0d98-4d6a-9596-e3f0ed967981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14981" ], "x-ms-correlation-request-id": [ - "a90143a3-c708-4f5e-b9f7-9e808c8adfe4" + "da4ad72f-f40d-40cd-9123-3949b3733f5b" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221226Z:a90143a3-c708-4f5e-b9f7-9e808c8adfe4" + "WESTEUROPE:20170801T094814Z:da4ad72f-f40d-40cd-9123-3949b3733f5b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6647fe9-3b82-4a84-825c-ea5e304b67a6" + "50307500-def6-4270-83d2-510209091cd3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3522\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"350ca240-548d-42e3-b2dc-a15b8da28a37\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4688\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39d500e6-c49e-49d4-828f-cbb3cd2171e6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet733\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet6792\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet5508\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9011\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet994\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2498\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\",\r\n \"etag\": \"W/\\\"2043c052-d002-4c99-9855-94536c9e15c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1904,7 +1935,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:25 GMT" + "Tue, 01 Aug 2017 09:48:15 GMT" ], "Pragma": [ "no-cache" @@ -1913,7 +1944,7 @@ "chunked" ], "ETag": [ - "W/\"7fdcc4dc-873e-4005-bf1a-68b732624f73\"" + "W/\"2043c052-d002-4c99-9855-94536c9e15c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1923,40 +1954,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97503f09-b930-4f1f-9676-ea400005d5aa" + "8bd29b37-ed24-4bc3-a5ea-d057a17ca41b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14980" ], "x-ms-correlation-request-id": [ - "a371c48e-c189-4bff-b6e5-d68e3c96365f" + "9ab7660d-6282-404c-a1f9-389004af3f45" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221226Z:a371c48e-c189-4bff-b6e5-d68e3c96365f" + "WESTEUROPE:20170801T094815Z:9ab7660d-6282-404c-a1f9-389004af3f45" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ece5054-06fe-45b5-a840-6532a473d1eb" + "e75c3af2-96ce-4d3b-84f9-2aea46c56027" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3522\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"350ca240-548d-42e3-b2dc-a15b8da28a37\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"etag\": \"W/\\\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4688\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39d500e6-c49e-49d4-828f-cbb3cd2171e6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet733\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet6792\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet5508\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9011\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/probes/azsmnet9011\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/loadBalancingRules/azsmnet5508\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet994\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2498\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\",\r\n \"etag\": \"W/\\\"2b6ca715-6188-4038-8279-a2398c58eec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/frontendIPConfigurations/azsmnet733\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1968,7 +2000,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:29 GMT" + "Tue, 01 Aug 2017 09:48:17 GMT" ], "Pragma": [ "no-cache" @@ -1977,7 +2009,7 @@ "chunked" ], "ETag": [ - "W/\"eb4591c3-ba89-4b01-a0fa-a92e6d28b867\"" + "W/\"2b6ca715-6188-4038-8279-a2398c58eec2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1987,37 +2019,100 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a229e495-3ed9-4792-bdbd-468fbb9faa3f" + "2ef3b78a-2adc-4856-9b0a-64bb8c886402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14973" ], "x-ms-correlation-request-id": [ - "e877dc6a-9a41-487c-86da-bf6a1e50f499" + "aecb188a-c351-4c6c-8561-d739aaa13316" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221229Z:e877dc6a-9a41-487c-86da-bf6a1e50f499" + "WESTEUROPE:20170801T094818Z:aecb188a-c351-4c6c-8561-d739aaa13316" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/networkInterfaces?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OC9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "baa9c1e3-f595-4d5a-98a5-cec2ca9ffdb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet4366\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7741421-09fd-43aa-bc37-b90f9faf27b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"af3ccf19-66e0-4d9b-9935-1042a82cb8e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet994\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"azsmnet5632\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e10ff93f-1d49-45af-8985-f0637879e86e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ea9db9bb-e3f1-433e-a37e-69eb95ea0214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/backendAddressPools/azsmnet6792\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"azsmnet9363\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d8f6f0b-94df-41d7-aef9-f23b419aa697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"54f82840-6bd7-4dba-809c-5e43a413d53b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/virtualNetworks/azsmnet2921/subnets/azsmnet2647\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688/inboundNatRules/azsmnet2498\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r0maw1ncpxbejee0lx2aa0eu4d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 09:48:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eaffd3ad-3606-4aa9-9a70-686478c4bc8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "710347a6-dd36-4600-991c-02038d7855a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T094818Z:710347a6-dd36-4600-991c-02038d7855a7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers/azsmnet4688?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NDY4OD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2cfb861-ca97-4f15-8a8f-6403fe236163" + "9f7dbc31-a6ad-4e4f-84b9-8763b3b4564c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -2032,13 +2127,13 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:12:29 GMT" + "Tue, 01 Aug 2017 09:48:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/9e19a158-d8bf-4fc6-849c-ea908fb15c11?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -2048,34 +2143,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "892ddc33-a56a-451c-9f96-b4cf3dc159d9" + "9e19a158-d8bf-4fc6-849c-ea908fb15c11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/9e19a158-d8bf-4fc6-849c-ea908fb15c11?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1188" ], "x-ms-correlation-request-id": [ - "18213e0c-2c90-4fe9-a040-4fa387066e76" + "ba2dc6bb-bd3f-4eba-956d-e7edd222fada" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221230Z:18213e0c-2c90-4fe9-a040-4fa387066e76" + "WESTEUROPE:20170801T094819Z:ba2dc6bb-bd3f-4eba-956d-e7edd222fada" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/9e19a158-d8bf-4fc6-849c-ea908fb15c11?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWUxOWExNTgtZDhiZi00ZmM2LTg0OWMtZWE5MDhmYjE1YzExP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2090,7 +2186,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:13:00 GMT" + "Tue, 01 Aug 2017 09:48:49 GMT" ], "Pragma": [ "no-cache" @@ -2106,37 +2202,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3384aeb6-cb44-4b95-8343-34b4e92bfff6" + "44c92b6c-6b28-4f3f-ad5f-4460b1c2bf69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14971" ], "x-ms-correlation-request-id": [ - "1b9e4ef5-dd0e-4226-a2d5-c5fd8019d715" + "ca0fad04-4f81-4b31-944c-db5f94f9626c" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221300Z:1b9e4ef5-dd0e-4226-a2d5-c5fd8019d715" + "WESTEUROPE:20170801T094850Z:ca0fad04-4f81-4b31-944c-db5f94f9626c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be2d1f93-92ac-45dd-9bc2-b6996413c1d5" + "e90de3b7-97b5-4b63-8b03-72b8f1e759f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2151,7 +2248,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:13:00 GMT" + "Tue, 01 Aug 2017 09:48:49 GMT" ], "Pragma": [ "no-cache" @@ -2160,16 +2257,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14970" ], "x-ms-request-id": [ - "c6d4e001-e98c-472c-a27d-bab6bbea4f57" + "5cd2b066-d902-4166-96c0-31d15c6f43df" ], "x-ms-correlation-request-id": [ - "c6d4e001-e98c-472c-a27d-bab6bbea4f57" + "5cd2b066-d902-4166-96c0-31d15c6f43df" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221300Z:c6d4e001-e98c-472c-a27d-bab6bbea4f57" + "WESTEUROPE:20170801T094850Z:5cd2b066-d902-4166-96c0-31d15c6f43df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2178,19 +2275,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet4366?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQzNjY/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51543aee-bf4d-4b85-9446-49ec52106524" + "e5b1e9ef-aae2-4e4d-956b-09203255ed5b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -2205,13 +2303,13 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:13:01 GMT" + "Tue, 01 Aug 2017 09:48:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/6212556b-b7b2-4bbe-928f-0147a41d2e24?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -2221,34 +2319,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d91d7f13-838b-49b3-a16c-9fc285b57bd1" + "6212556b-b7b2-4bbe-928f-0147a41d2e24" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/6212556b-b7b2-4bbe-928f-0147a41d2e24?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1187" ], "x-ms-correlation-request-id": [ - "354dfb2b-1eda-422f-b778-7f02f2307532" + "f8ce4258-1944-4bde-b8d5-76c02f4cd484" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221301Z:354dfb2b-1eda-422f-b778-7f02f2307532" + "WESTEUROPE:20170801T094851Z:f8ce4258-1944-4bde-b8d5-76c02f4cd484" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/6212556b-b7b2-4bbe-928f-0147a41d2e24?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjIxMjU1NmItYjdiMi00YmJlLTkyOGYtMDE0N2E0MWQyZTI0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2263,7 +2362,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:13:31 GMT" + "Tue, 01 Aug 2017 09:49:22 GMT" ], "Pragma": [ "no-cache" @@ -2279,37 +2378,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0c71e414-5177-496d-b0d1-90a351f3b20c" + "160a2dbe-0e44-4a1c-ad00-300cf76977e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14969" ], "x-ms-correlation-request-id": [ - "e79d54d2-d364-4c8c-b017-96ea2078b73e" + "00fefaae-2822-4b07-9565-4e1ef02f3f20" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221331Z:e79d54d2-d364-4c8c-b017-96ea2078b73e" + "WESTEUROPE:20170801T094922Z:00fefaae-2822-4b07-9565-4e1ef02f3f20" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet5632?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MzI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64d5cd85-de3f-47f6-9584-fba52cbb554a" + "c9ac39a6-490b-460f-a237-72cf79ac679a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -2324,13 +2424,13 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:13:31 GMT" + "Tue, 01 Aug 2017 09:49:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/99475a05-285f-4f6b-b8f8-ad5c78a451de?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -2340,34 +2440,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1a21769a-b229-45d2-a730-3d208ae11c57" + "99475a05-285f-4f6b-b8f8-ad5c78a451de" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/99475a05-285f-4f6b-b8f8-ad5c78a451de?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1186" ], "x-ms-correlation-request-id": [ - "433a5d90-87b5-42a2-b613-771cf263ffa6" + "e1308e42-05fb-41fd-972e-d6c831b84b6d" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221332Z:433a5d90-87b5-42a2-b613-771cf263ffa6" + "WESTEUROPE:20170801T094922Z:e1308e42-05fb-41fd-972e-d6c831b84b6d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/99475a05-285f-4f6b-b8f8-ad5c78a451de?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTk0NzVhMDUtMjg1Zi00ZjZiLWI4ZjgtYWQ1Yzc4YTQ1MWRlP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2382,7 +2483,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:14:02 GMT" + "Tue, 01 Aug 2017 09:49:53 GMT" ], "Pragma": [ "no-cache" @@ -2398,37 +2499,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0a9a360b-5b2e-479e-a284-1a316b9649bf" + "fc1eafbe-1bea-431c-9981-74636b4e8c22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14968" ], "x-ms-correlation-request-id": [ - "6ee0b61c-23af-4732-8fb8-c85c6a6bc7ef" + "655d4e02-8eb0-4764-974b-131698d565d0" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221402Z:6ee0b61c-23af-4732-8fb8-c85c6a6bc7ef" + "WESTEUROPE:20170801T094953Z:655d4e02-8eb0-4764-974b-131698d565d0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/networkInterfaces/azsmnet9363?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDkzNjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e67f6a24-57f5-45af-91c4-fe00b6e8ec83" + "12ea0a92-a9ac-4396-9be6-d33b5f8a8958" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -2443,13 +2545,13 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:14:02 GMT" + "Tue, 01 Aug 2017 09:49:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/acf19929-432e-49f0-9fd3-49688ef68cd5?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -2459,34 +2561,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fd9fc03d-a4bb-43e4-9397-c11e79c53925" + "acf19929-432e-49f0-9fd3-49688ef68cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/acf19929-432e-49f0-9fd3-49688ef68cd5?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1185" ], "x-ms-correlation-request-id": [ - "e9146bdb-adec-45a4-938d-884d86fc3d41" + "f302cee7-bc59-4282-9787-d24e63f3221b" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221402Z:e9146bdb-adec-45a4-938d-884d86fc3d41" + "WESTEUROPE:20170801T094954Z:f302cee7-bc59-4282-9787-d24e63f3221b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/acf19929-432e-49f0-9fd3-49688ef68cd5?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWNmMTk5MjktNDMyZS00OWYwLTlmZDMtNDk2ODhlZjY4Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2501,7 +2604,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:14:32 GMT" + "Tue, 01 Aug 2017 09:50:24 GMT" ], "Pragma": [ "no-cache" @@ -2517,37 +2620,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "233b1230-8c40-4564-87cc-55e580da7a7c" + "88577048-6f07-47cb-aea4-887329b69c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14967" ], "x-ms-correlation-request-id": [ - "6d89b4b3-0e85-49b3-b23d-461ed45dbf74" + "709fc6a1-8efb-443e-95b3-a5f0bb863728" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221433Z:6d89b4b3-0e85-49b3-b23d-461ed45dbf74" + "WESTEUROPE:20170801T095025Z:709fc6a1-8efb-443e-95b3-a5f0bb863728" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1224/providers/Microsoft.Network/publicIPAddresses/azsmnet4543?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ1NDM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fd0879d-c51c-40f3-b327-0ef5009f7dd3" + "54fcb1ca-30e8-46de-94c8-293d77dc7317" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -2562,13 +2666,13 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:14:32 GMT" + "Tue, 01 Aug 2017 09:50:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/3904b4a2-5c67-4a4c-b6e8-bde3d119e965?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -2578,34 +2682,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5fbb2994-1d41-4726-ae24-018ff2a4399b" + "3904b4a2-5c67-4a4c-b6e8-bde3d119e965" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/3904b4a2-5c67-4a4c-b6e8-bde3d119e965?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1184" ], "x-ms-correlation-request-id": [ - "fa082f13-6369-43cc-bd2b-4b6d79033951" + "c37576e7-d44b-431a-8c17-168b2b39cda8" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221433Z:fa082f13-6369-43cc-bd2b-4b6d79033951" + "WESTEUROPE:20170801T095026Z:c37576e7-d44b-431a-8c17-168b2b39cda8" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/3904b4a2-5c67-4a4c-b6e8-bde3d119e965?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzkwNGI0YTItNWM2Ny00YTRjLWI2ZTgtYmRlM2QxMTllOTY1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2620,7 +2725,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:15:03 GMT" + "Tue, 01 Aug 2017 09:50:57 GMT" ], "Pragma": [ "no-cache" @@ -2636,19 +2741,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "47ff6ed6-8144-43e6-9939-d49eefe09d5a" + "647b2c37-9aac-40f7-8e66-11acddf10590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14966" ], "x-ms-correlation-request-id": [ - "b95e8fc1-7c54-44de-b082-330f4f935422" + "02dd3550-b54b-4a87-bcaf-a579e6e1233f" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221503Z:b95e8fc1-7c54-44de-b082-330f4f935422" + "WESTEUROPE:20170801T095057Z:02dd3550-b54b-4a87-bcaf-a579e6e1233f" ] }, "StatusCode": 200 @@ -2656,24 +2761,24 @@ ], "Names": { "LoadBalancerApiNicAssociationTest": [ - "csmrg25", - "azsmnet4721", - "azsmnet6884", - "azsmnet5244", - "azsmnet3892", - "azsmnet5338", - "azsmnet5719", - "azsmnet3894", - "azsmnet3522", - "azsmnet9647", - "azsmnet3325", - "azsmnet1645", - "azsmnet9912", - "azsmnet5822", - "azsmnet5381" + "csmrg1224", + "azsmnet4543", + "azsmnet8018", + "azsmnet2921", + "azsmnet2647", + "azsmnet4366", + "azsmnet5632", + "azsmnet9363", + "azsmnet4688", + "azsmnet733", + "azsmnet6792", + "azsmnet5508", + "azsmnet9011", + "azsmnet994", + "azsmnet2498" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "947d47b4-7883-4bb9-9d85-c5e8e2f572ce" } -} +} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index 39da954b24d9..ff699fba2347 100644 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb30126-f04a-4edd-9964-91dc51f1048f" + "dea3b9e0-3c37-4d3c-8058-5d64d0de6507" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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\": \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2017-06-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"routeTables\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/privateAccessServices\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:08:28 GMT" + "Tue, 01 Aug 2017 12:18:43 GMT" ], "Pragma": [ "no-cache" @@ -37,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "6ea43961-b371-4fb7-9b06-229107aab168" + "a0268584-d48f-4a36-b968-10b088d6678d" ], "x-ms-correlation-request-id": [ - "6ea43961-b371-4fb7-9b06-229107aab168" + "a0268584-d48f-4a36-b968-10b088d6678d" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220828Z:6ea43961-b371-4fb7-9b06-229107aab168" + "WESTEUROPE:20170801T121843Z:a0268584-d48f-4a36-b968-10b088d6678d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,10 +56,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/csmrg8321?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL2NzbXJnODMyMT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourcegroups/csmrg6334?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjMzND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -67,16 +68,17 @@ "29" ], "x-ms-client-request-id": [ - "7fd5b42f-8728-4a6f-88da-ee11f94aab63" + "f6d45a83-a977-4257-85e0-9b9b127a9eb9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321\",\r\n \"name\": \"csmrg8321\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334\",\r\n \"name\": \"csmrg6334\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -91,22 +93,22 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:08:29 GMT" + "Tue, 01 Aug 2017 12:18:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "35d08de2-5447-40d0-9151-1ec653d82252" + "c910ed17-c234-4500-9cbc-f633af8baee9" ], "x-ms-correlation-request-id": [ - "35d08de2-5447-40d0-9151-1ec653d82252" + "c910ed17-c234-4500-9cbc-f633af8baee9" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220829Z:35d08de2-5447-40d0-9151-1ec653d82252" + "WESTEUROPE:20170801T121846Z:c910ed17-c234-4500-9cbc-f633af8baee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,10 +117,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDkwMzg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4166\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +129,20 @@ "206" ], "x-ms-client-request-id": [ - "af7432c3-76b3-4495-8f87-68f9a9fc5037" + "edd64f09-5acc-4778-828e-f659d52b5ed1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet310\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\",\r\n \"etag\": \"W/\\\"a224c400-5ce2-4746-ae47-481f589662d2\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5605e0bd-3516-4a43-bc6b-2a7c8ce937a0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\",\r\n \"fqdn\": \"azsmnet9199.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9038\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\",\r\n \"etag\": \"W/\\\"b4641386-3f4b-4871-aca0-ff243a1bb3cb\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"64f5a083-7182-4e8c-b4de-cc39c4191155\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4166\",\r\n \"fqdn\": \"azsmnet4166.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "709" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,47 +154,48 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:08:30 GMT" + "Tue, 01 Aug 2017 12:18:50 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" + "50a2602c-1731-43c7-9cdb-7a23cbc3454e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/50a2602c-1731-43c7-9cdb-7a23cbc3454e?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "7ceb2488-e83d-4eee-bba2-2d1584653238" + "3ee7d20a-3abe-4d49-9bf1-e7445cd84556" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220831Z:7ceb2488-e83d-4eee-bba2-2d1584653238" + "WESTEUROPE:20170801T121850Z:3ee7d20a-3abe-4d49-9bf1-e7445cd84556" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/50a2602c-1731-43c7-9cdb-7a23cbc3454e?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTBhMjYwMmMtMTczMS00M2M3LTljZGItN2EyM2NiYzM0NTRlP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -206,7 +210,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:00 GMT" + "Tue, 01 Aug 2017 12:19:21 GMT" ], "Pragma": [ "no-cache" @@ -222,34 +226,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cbd8fab2-e5a2-463e-aa7c-81a7f384923e" + "36061ba3-da76-4f56-af43-31824fa1b4a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14980" ], "x-ms-correlation-request-id": [ - "27106ad9-01ae-4ca7-bf41-750d46b2ab4b" + "5fa7a517-a287-4dbe-b30a-a85a4ac667ab" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220901Z:27106ad9-01ae-4ca7-bf41-750d46b2ab4b" + "WESTEUROPE:20170801T121921Z:5fa7a517-a287-4dbe-b30a-a85a4ac667ab" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDkwMzg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet310\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\",\r\n \"etag\": \"W/\\\"bb145301-3c2f-4f68-a071-607a1df5c50b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5605e0bd-3516-4a43-bc6b-2a7c8ce937a0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\",\r\n \"fqdn\": \"azsmnet9199.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9038\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\",\r\n \"etag\": \"W/\\\"2662dae0-0e4b-483c-8f62-821ad9b11802\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64f5a083-7182-4e8c-b4de-cc39c4191155\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4166\",\r\n \"fqdn\": \"azsmnet4166.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -261,7 +266,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:00 GMT" + "Tue, 01 Aug 2017 12:19:21 GMT" ], "Pragma": [ "no-cache" @@ -270,7 +275,7 @@ "chunked" ], "ETag": [ - "W/\"bb145301-3c2f-4f68-a071-607a1df5c50b\"" + "W/\"2662dae0-0e4b-483c-8f62-821ad9b11802\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -280,40 +285,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "de625dee-187c-4e61-a9f8-420ebeadc7e7" + "0a365e75-b9b0-4514-bc72-1dcbb61a6dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14979" ], "x-ms-correlation-request-id": [ - "370a40a8-96ef-498e-b730-b8c7697ce13c" + "03571a49-51a9-4675-a690-633392a0e60e" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220901Z:370a40a8-96ef-498e-b730-b8c7697ce13c" + "WESTEUROPE:20170801T121921Z:03571a49-51a9-4675-a690-633392a0e60e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDkwMzg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bf323a8-6af6-4c0f-88a6-d066fb14b71d" + "177c9972-3b90-4df2-835c-ae7d28beac4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet310\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\",\r\n \"etag\": \"W/\\\"bb145301-3c2f-4f68-a071-607a1df5c50b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5605e0bd-3516-4a43-bc6b-2a7c8ce937a0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\",\r\n \"fqdn\": \"azsmnet9199.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9038\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\",\r\n \"etag\": \"W/\\\"2662dae0-0e4b-483c-8f62-821ad9b11802\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64f5a083-7182-4e8c-b4de-cc39c4191155\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4166\",\r\n \"fqdn\": \"azsmnet4166.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +331,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:01 GMT" + "Tue, 01 Aug 2017 12:19:21 GMT" ], "Pragma": [ "no-cache" @@ -334,7 +340,7 @@ "chunked" ], "ETag": [ - "W/\"bb145301-3c2f-4f68-a071-607a1df5c50b\"" + "W/\"2662dae0-0e4b-483c-8f62-821ad9b11802\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -344,49 +350,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5b6e4fe6-3037-4e6a-92d7-7a2722fadda5" + "36bb6753-9b37-40e8-b2fd-7bbc3f1ab897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14978" ], "x-ms-correlation-request-id": [ - "dbc42ad4-8b4e-451e-84cc-97f6c41dcae0" + "eee965c8-ffe7-4242-b6b7-ec64aea71516" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220901Z:dbc42ad4-8b4e-451e-84cc-97f6c41dcae0" + "WESTEUROPE:20170801T121922Z:eee965c8-ffe7-4242-b6b7-ec64aea71516" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n }\r\n },\r\n \"name\": \"azsmnet3663\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7102\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet1113\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet1286\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet2821\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2755" + "2756" ], "x-ms-client-request-id": [ - "b5ae85df-276f-4198-a051-60cf37dae834" + "ec5ef570-e366-43cf-8cd5-ee4d53494021" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2672\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60d49dac-f2c1-49e5-ae5d-68fd7dc137f0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8560\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69c065c9-ee6d-4903-af58-7eb5b5b6aed4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6292" + "6293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,7 +405,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:01 GMT" + "Tue, 01 Aug 2017 12:19:24 GMT" ], "Pragma": [ "no-cache" @@ -408,37 +415,38 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" + "4cac56bc-ad35-46f5-b781-543b9d9beba6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/4cac56bc-ad35-46f5-b781-543b9d9beba6?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "0dd1861e-ca01-4c65-83ec-bbdaa7ef873f" + "14701086-f6f9-4dd3-8dd5-e7a18135d08f" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220902Z:0dd1861e-ca01-4c65-83ec-bbdaa7ef873f" + "WESTEUROPE:20170801T121924Z:14701086-f6f9-4dd3-8dd5-e7a18135d08f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2672\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60d49dac-f2c1-49e5-ae5d-68fd7dc137f0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8560\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69c065c9-ee6d-4903-af58-7eb5b5b6aed4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -450,7 +458,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:02 GMT" + "Tue, 01 Aug 2017 12:19:24 GMT" ], "Pragma": [ "no-cache" @@ -459,7 +467,7 @@ "chunked" ], "ETag": [ - "W/\"6bd60004-58c2-4f87-93bc-5280518f4a80\"" + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -469,40 +477,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "839597e2-21f9-45cd-b6bb-661ae82f4ef3" + "841fd91e-f62a-43e7-b27c-5876c9e25b90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14977" ], "x-ms-correlation-request-id": [ - "42b98392-7619-49b5-ba0b-fb2ff61d1c93" + "dad5163d-9755-4c99-9640-83e3fdb53702" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220902Z:42b98392-7619-49b5-ba0b-fb2ff61d1c93" + "WESTEUROPE:20170801T121924Z:dad5163d-9755-4c99-9640-83e3fdb53702" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "978b6f7a-8258-4f36-8ec3-b511abafde74" + "30371359-f178-48f6-bc14-6b5e9a1f7f81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2672\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60d49dac-f2c1-49e5-ae5d-68fd7dc137f0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8560\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69c065c9-ee6d-4903-af58-7eb5b5b6aed4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -514,7 +523,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:02 GMT" + "Tue, 01 Aug 2017 12:19:24 GMT" ], "Pragma": [ "no-cache" @@ -523,7 +532,7 @@ "chunked" ], "ETag": [ - "W/\"6bd60004-58c2-4f87-93bc-5280518f4a80\"" + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -533,40 +542,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4bfb8851-db6d-40a2-ae82-ebb771138709" + "7014d9fa-1bc7-4c70-b206-bc075b624f88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14976" ], "x-ms-correlation-request-id": [ - "4d39eba6-cc52-4e14-9ea5-aea77a1a9084" + "e010bbc0-5dac-4771-be9c-dd2140f8a937" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220903Z:4d39eba6-cc52-4e14-9ea5-aea77a1a9084" + "WESTEUROPE:20170801T121925Z:e010bbc0-5dac-4771-be9c-dd2140f8a937" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0a4f5ea-8cf8-4e96-aa42-77d0b9a52856" + "c13737ae-e719-4819-89e0-11a60caab49b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet2672\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60d49dac-f2c1-49e5-ae5d-68fd7dc137f0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet8560\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69c065c9-ee6d-4903-af58-7eb5b5b6aed4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -578,7 +588,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:02 GMT" + "Tue, 01 Aug 2017 12:19:24 GMT" ], "Pragma": [ "no-cache" @@ -594,37 +604,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "31af1bc7-ff2a-436f-86ca-68a3940e9897" + "455466fb-0735-4e0d-9f7a-97055eb478c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14975" ], "x-ms-correlation-request-id": [ - "67334ec2-1688-4560-9701-d14cf3565dc5" + "80320e68-a804-4eef-8cfa-fa532d1659c4" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220903Z:67334ec2-1688-4560-9701-d14cf3565dc5" + "WESTEUROPE:20170801T121925Z:80320e68-a804-4eef-8cfa-fa532d1659c4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "874feeab-6517-4c32-9bdd-e4158da3e0bb" + "c7917753-165f-4d77-9ae8-10981c64593d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -639,7 +650,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:35 GMT" + "Tue, 01 Aug 2017 12:20:31 GMT" ], "Pragma": [ "no-cache" @@ -648,16 +659,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14959" ], "x-ms-request-id": [ - "1597d28b-2fc2-4fcb-a67e-d27e919a915c" + "415504cf-7e6b-4fda-bee5-8ab8616657ff" ], "x-ms-correlation-request-id": [ - "1597d28b-2fc2-4fcb-a67e-d27e919a915c" + "415504cf-7e6b-4fda-bee5-8ab8616657ff" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220936Z:1597d28b-2fc2-4fcb-a67e-d27e919a915c" + "WESTEUROPE:20170801T122031Z:415504cf-7e6b-4fda-bee5-8ab8616657ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,22 +677,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/loadBalancers?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95fb2067-b652-47cc-9f26-924b52944fa9" + "f5f9714f-e167-441c-8470-4204aca3c096" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"scaleset1lb\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb\",\r\n \"etag\": \"W/\\\"df110817-d733-4b50-b1f4-7a0ac7f274f6\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aada1e5b-5228-4ef8-844f-a6bcbf89d858\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n \"etag\": \"W/\\\"df110817-d733-4b50-b1f4-7a0ac7f274f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/publicIPAddresses/scaleset1pip\"\r\n },\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb/inboundNatPools/scaleset1natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"scaleset1bepool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb/backendAddressPools/scaleset1bepool\",\r\n \"etag\": \"W/\\\"df110817-d733-4b50-b1f4-7a0ac7f274f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"scaleset1natpool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb/inboundNatPools/scaleset1natpool\",\r\n \"etag\": \"W/\\\"df110817-d733-4b50-b1f4-7a0ac7f274f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50099,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet1/providers/Microsoft.Network/loadBalancers/scaleset1lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"scaleset2lb\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb\",\r\n \"etag\": \"W/\\\"000f2e02-0561-4e6b-9ba4-3422982041a1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a5624a1-52cb-4062-8007-a9aa2e318068\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n \"etag\": \"W/\\\"000f2e02-0561-4e6b-9ba4-3422982041a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/publicIPAddresses/scaleset2pip\"\r\n },\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb/inboundNatPools/scaleset2natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"scaleset2bepool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb/backendAddressPools/scaleset2bepool\",\r\n \"etag\": \"W/\\\"000f2e02-0561-4e6b-9ba4-3422982041a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"scaleset2natpool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb/inboundNatPools/scaleset2natpool\",\r\n \"etag\": \"W/\\\"000f2e02-0561-4e6b-9ba4-3422982041a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50099,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cliTestRg_ScaleSet2/providers/Microsoft.Network/loadBalancers/scaleset2lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2672\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60d49dac-f2c1-49e5-ae5d-68fd7dc137f0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/loadBalancingRules/azsmnet1692\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9425\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/inboundNatRules/azsmnet9566\",\r\n \"etag\": \"W/\\\"6bd60004-58c2-4f87-93bc-5280518f4a80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n },\r\n {\r\n \"name\": \"yugangwvmlb\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c22f20ae-bfa2-4ce6-8e3d-9b370db21afc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/publicIPAddresses/yugangwvmpip\"\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.3\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatPools/yugangwvmnatpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"yugangwvmbepool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/backendAddressPools/yugangwvmbepool\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/0/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/2/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/3/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"yugangwvmnatpool.0\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.0\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n },\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/0/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"yugangwvmnatpool.2\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.2\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n },\r\n \"frontendPort\": 50002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/2/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"yugangwvmnatpool.3\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatRules/yugangwvmnatpool.3\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n },\r\n \"frontendPort\": 50001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Compute/virtualMachineScaleSets/yugangwvm/virtualMachines/3/networkInterfaces/yugangwvmnic/ipConfigurations/yugangwvmipconfig\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"yugangwvmnatpool\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/inboundNatPools/yugangwvmnatpool\",\r\n \"etag\": \"W/\\\"525616a1-9310-4921-b0dd-7b2e5d970f9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/yugangwvmss/providers/Microsoft.Network/loadBalancers/yugangwvmlb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet8560\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69c065c9-ee6d-4903-af58-7eb5b5b6aed4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -693,7 +705,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:04 GMT" + "Tue, 01 Aug 2017 12:19:25 GMT" ], "Pragma": [ "no-cache" @@ -709,43 +721,44 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "701d9256-7888-4e11-80e1-5c2356b013a4" + "42a7f44f-18c7-449f-a4f8-d093a21cd8ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14974" ], "x-ms-correlation-request-id": [ - "5199b1f6-f29c-49b4-a9ac-091ecbf00d5f" + "8049cbef-73ec-4789-9d3a-0d669ec35a05" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220904Z:5199b1f6-f29c-49b4-a9ac-091ecbf00d5f" + "WESTEUROPE:20170801T121925Z:8049cbef-73ec-4789-9d3a-0d669ec35a05" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9iYWNrZW5kQWRkcmVzc1Bvb2xzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7312f137-c616-43d7-abd0-2ef488021322" + "86555bcd-59ae-4057-b2e6-2d18979e0ba4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -754,53 +767,122 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:04 GMT" + "Tue, 01 Aug 2017 12:19:25 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-06-01" - ], - "Retry-After": [ - "10" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" + "7024db94-f822-4ec4-8b84-97b9bc0b48ff" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-06-01" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "30369b62-fb3c-41db-b2c2-452e87782460" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121925Z:30369b62-fb3c-41db-b2c2-452e87782460" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9iYWNrZW5kQWRkcmVzc1Bvb2xzL2F6c21uZXQyNzk3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6592e958-dfe6-40fe-9a2d-d52fd68096a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2797\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0d8614bc-c85f-4b7e-87e4-a1be9b9fa085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" ], "x-ms-correlation-request-id": [ - "d0dbc0f2-77db-4d07-bd9f-d5dc53599485" + "6fa20c12-bfef-4343-9582-f414f7b7f1d2" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220905Z:d0dbc0f2-77db-4d07-bd9f-d5dc53599485" + "WESTEUROPE:20170801T121926Z:6fa20c12-bfef-4343-9582-f414f7b7f1d2" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9mcm9udGVuZElQQ29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3caff028-9260-42ac-b2c0-d2a20773f7be" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -812,7 +894,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:35 GMT" + "Tue, 01 Aug 2017 12:19:25 GMT" ], "Pragma": [ "no-cache" @@ -828,43 +910,44 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8019131a-ad64-44f6-98f4-08996a973886" + "932ce5e9-4ad5-44d4-9fe6-4980980a1f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14971" ], "x-ms-correlation-request-id": [ - "39327e3c-2815-4ed9-8ab7-42ea6df4d528" + "7e8ddc0c-d663-4dbf-b583-7b416361e355" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220935Z:39327e3c-2815-4ed9-8ab7-42ea6df4d528" + "WESTEUROPE:20170801T121926Z:7e8ddc0c-d663-4dbf-b583-7b416361e355" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9mcm9udGVuZElQQ29uZmlndXJhdGlvbnMvYXpzbW5ldDM2NjM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5586557-3952-4280-9015-409f6536b52d" + "5e849539-d2a3-424f-ba0c-0f7ab6a39b7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet3663\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -873,50 +956,928 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:09:36 GMT" + "Tue, 01 Aug 2017 12:19:26 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-06-01" + "Transfer-Encoding": [ + "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d02ab371-ea0c-4a29-b3c1-a316877805ee" + "9a0e9eac-9d8d-4996-b058-324d34665bb2" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-06-01" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "06bb8865-5a34-4743-a08d-e7dec7175362" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121926Z:06bb8865-5a34-4743-a08d-e7dec7175362" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9sb2FkQmFsYW5jaW5nUnVsZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51f2dd19-a2fc-4553-87e6-54bb44631e95" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "80af6d3f-46b2-4387-beee-9a16fecbb549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "b96aaa1e-4bb3-4ff3-99d3-7e81560d2020" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121926Z:b96aaa1e-4bb3-4ff3-99d3-7e81560d2020" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9sb2FkQmFsYW5jaW5nUnVsZXMvYXpzbW5ldDcxMDI/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6b09265-51c3-40c8-a334-374386aabc1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7102\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/backendAddressPools/azsmnet2797\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f787fe35-0b58-4e95-ac49-1bca93bd0805" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "1444579f-938b-4800-8f9d-1da61439824e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121927Z:1444579f-938b-4800-8f9d-1da61439824e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/networkInterfaces?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be364f6c-41c0-42b5-9f18-2b60eaa4c2a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "057d3916-f7b5-4b5d-95e1-173e02cc247e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "b4ca6b10-1cee-4cbf-8138-b6748dddf40b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121927Z:b4ca6b10-1cee-4cbf-8138-b6748dddf40b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9wcm9iZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abd26cb0-c222-40d0-a8ab-9104d7dc2acf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4a9c132b-8b00-4951-8338-40ce14faa26d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "3d4ed116-4757-4eec-ac49-7efd01decf19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121927Z:3d4ed116-4757-4eec-ac49-7efd01decf19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9wcm9iZXMvYXpzbW5ldDExMTM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b09fff9-5e83-473c-8b66-605ca1eebca2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1113\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/probes/azsmnet1113\",\r\n \"etag\": \"W/\\\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/loadBalancingRules/azsmnet7102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"76815d46-4c5f-46d0-b820-d8e01bb82cdd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "137bac35-0bb6-42ff-970a-a0a256b77565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "07f096d6-a837-439c-a7cc-ec3a01331b0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121927Z:07f096d6-a837-439c-a7cc-ec3a01331b0d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9pbmJvdW5kTmF0UnVsZXMvYXpzbW5ldDMxOTg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3391,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "394" + ], + "x-ms-client-request-id": [ + "cfe2fc8b-9b6a-46d1-8e0d-f1a6a4131c2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3198\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3391,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "83ed1a3b-928e-4b6e-9ff7-6572af0154f3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/83ed1a3b-928e-4b6e-9ff7-6572af0154f3?api-version=2017-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "c549de8e-099c-4061-842e-aeec4c1b1a02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121928Z:c549de8e-099c-4061-842e-aeec4c1b1a02" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9pbmJvdW5kTmF0UnVsZXMvYXpzbW5ldDMxOTg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3198\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3391,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"4d83ad90-8295-4873-946c-57c219c36657\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a90a8377-4e8e-4da0-bc33-d84d0dc79aab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "fdd3601c-49de-46c2-a612-cc4fdbc7cd19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121928Z:fdd3601c-49de-46c2-a612-cc4fdbc7cd19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9pbmJvdW5kTmF0UnVsZXMvYXpzbW5ldDMxOTg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac55c15c-6b77-4e3b-ae1f-e427bec59204" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3198\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3391,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"4d83ad90-8295-4873-946c-57c219c36657\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c2944d45-ec36-4fa8-b287-3315a1f966f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "fcacadc0-7881-4ab8-b93f-cc712e907871" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121928Z:fcacadc0-7881-4ab8-b93f-cc712e907871" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9pbmJvdW5kTmF0UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa78e03f-8009-4f20-a1aa-348386ccff1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet1286\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet1286\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2821\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet2821\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3198\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198\",\r\n \"etag\": \"W/\\\"4d83ad90-8295-4873-946c-57c219c36657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/frontendIPConfigurations/azsmnet3663\"\r\n },\r\n \"frontendPort\": 3391,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "16eb0a3e-d652-4534-b952-da28d63062e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "ff69ed92-c64b-4bc2-9590-95706b64f778" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121929Z:ff69ed92-c64b-4bc2-9590-95706b64f778" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560/inboundNatRules/azsmnet3198?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MC9pbmJvdW5kTmF0UnVsZXMvYXpzbW5ldDMxOTg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90706036-a685-4092-9c30-8a5ddc05579d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/2538e34d-e31b-49ba-8e52-ac1af1ab39a8?api-version=2017-06-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2538e34d-e31b-49ba-8e52-ac1af1ab39a8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2538e34d-e31b-49ba-8e52-ac1af1ab39a8?api-version=2017-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4e6bf286-0052-4d7d-aec9-df76aba8ef20" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T121929Z:4e6bf286-0052-4d7d-aec9-df76aba8ef20" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2538e34d-e31b-49ba-8e52-ac1af1ab39a8?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjUzOGUzNGQtZTMxYi00OWJhLThlNTItYWMxYWYxYWIzOWE4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:19:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d2f0e249-e352-4162-ba81-50addb82b0a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "70bdf306-4ddc-4018-9fb7-91c8bd0ed55e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T122000Z:70bdf306-4ddc-4018-9fb7-91c8bd0ed55e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/loadBalancers/azsmnet8560?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODU2MD9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eda1fe1f-7236-481e-a2aa-1b4964b65863" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:20:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/67d59c98-1e2a-49a6-bcef-a2a87bf39d74?api-version=2017-06-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "67d59c98-1e2a-49a6-bcef-a2a87bf39d74" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/67d59c98-1e2a-49a6-bcef-a2a87bf39d74?api-version=2017-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "9aa73bd9-fa1b-48da-b1d9-9f1ab93628f9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T122000Z:9aa73bd9-fa1b-48da-b1d9-9f1ab93628f9" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/67d59c98-1e2a-49a6-bcef-a2a87bf39d74?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjdkNTljOTgtMWUyYS00OWE2LWJjZWYtYTJhODdiZjM5ZDc0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:20:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3189adfc-cbe3-46ec-84aa-ad3b78829eea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "53612401-99c0-4dab-9928-ebe9289e6d9d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T122031Z:53612401-99c0-4dab-9928-ebe9289e6d9d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6334/providers/Microsoft.Network/publicIPAddresses/azsmnet9038?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjMzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDkwMzg/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4d6b3bf-14e0-435f-ab62-d69269354bbc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:20:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/86503951-7837-4de4-a37d-1035d1449f4b?api-version=2017-06-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "86503951-7837-4de4-a37d-1035d1449f4b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/86503951-7837-4de4-a37d-1035d1449f4b?api-version=2017-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], "x-ms-correlation-request-id": [ - "e592a3ab-52b3-4d8d-b76f-3646e1adb6ae" + "b9043929-3848-4668-b865-52e0e899c3bc" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T220936Z:e592a3ab-52b3-4d8d-b76f-3646e1adb6ae" + "WESTEUROPE:20170801T122033Z:b9043929-3848-4668-b865-52e0e899c3bc" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/86503951-7837-4de4-a37d-1035d1449f4b?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODY1MDM5NTEtNzgzNy00ZGU0LWEzN2QtMTAzNWQxNDQ5ZjRiP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -931,7 +1892,7 @@ "no-cache" ], "Date": [ - "Thu, 02 Jun 2016 22:10:06 GMT" + "Tue, 01 Aug 2017 12:21:03 GMT" ], "Pragma": [ "no-cache" @@ -947,19 +1908,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6752ccf3-5b17-43ef-9c59-5e8130b66551" + "124cb667-a065-47da-be55-f4db8fc5f814" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14958" ], "x-ms-correlation-request-id": [ - "11424ea6-ee78-4cc5-94b2-222fa1a7ca45" + "e89d2da7-ceae-4d22-a5b1-ac731076ddcd" ], "x-ms-routing-request-id": [ - "WESTUS:20160602T221006Z:11424ea6-ee78-4cc5-94b2-222fa1a7ca45" + "WESTEUROPE:20170801T122103Z:e89d2da7-ceae-4d22-a5b1-ac731076ddcd" ] }, "StatusCode": 200 @@ -967,19 +1928,20 @@ ], "Names": { "LoadBalancerApiTest": [ - "csmrg8321", - "azsmnet310", - "azsmnet9199", - "azsmnet2672", - "azsmnet9262", - "azsmnet9105", - "azsmnet1692", - "azsmnet3839", - "azsmnet9425", - "azsmnet9566" + "csmrg6334", + "azsmnet9038", + "azsmnet4166", + "azsmnet8560", + "azsmnet3663", + "azsmnet2797", + "azsmnet7102", + "azsmnet1113", + "azsmnet1286", + "azsmnet2821", + "azsmnet3198" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "947d47b4-7883-4bb9-9d85-c5e8e2f572ce" } -} +} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index 17d1e67bc589..e3b5e3f87010 100644 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -1,22 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d239443-bf40-4956-876b-8d42765d2950" + "60e8f7cb-7c12-4f59-b188-21e6df931b26" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"2017-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 \"2017-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 \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-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 \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 \"2017-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\": \"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 \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"routeTables\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/privateAccessServices\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:11:50 GMT" + "Tue, 01 Aug 2017 10:26:58 GMT" ], "Pragma": [ "no-cache" @@ -37,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-request-id": [ - "21a5bf1d-b1ee-4cbe-8a30-08782ee73591" + "8133389a-587f-482c-a29f-e6337c5c99b5" ], "x-ms-correlation-request-id": [ - "21a5bf1d-b1ee-4cbe-8a30-08782ee73591" + "8133389a-587f-482c-a29f-e6337c5c99b5" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121150Z:21a5bf1d-b1ee-4cbe-8a30-08782ee73591" + "WESTEUROPE:20170801T102659Z:8133389a-587f-482c-a29f-e6337c5c99b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,10 +56,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/csmrg2944?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjk0ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourcegroups/csmrg1843?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTg0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -67,16 +68,17 @@ "29" ], "x-ms-client-request-id": [ - "dcfed950-1323-4a5d-9aa0-0536412efa5b" + "dae9624c-84a6-46b5-9883-da3d08a9d6ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944\",\r\n \"name\": \"csmrg2944\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843\",\r\n \"name\": \"csmrg1843\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -91,22 +93,22 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:11:50 GMT" + "Tue, 01 Aug 2017 10:27:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "caefeef7-5932-43fe-a590-8d838a0f35a4" + "724f2219-2ecd-4e2b-b090-72a335eea1df" ], "x-ms-correlation-request-id": [ - "caefeef7-5932-43fe-a590-8d838a0f35a4" + "724f2219-2ecd-4e2b-b090-72a335eea1df" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121150Z:caefeef7-5932-43fe-a590-8d838a0f35a4" + "WESTEUROPE:20170801T102701Z:724f2219-2ecd-4e2b-b090-72a335eea1df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,10 +117,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk1OTU/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1544\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +129,20 @@ "206" ], "x-ms-client-request-id": [ - "6b7b9773-c498-43ba-9c49-7bc8bc92c7ec" + "497ad7b1-5a5d-4a51-9072-6c00ae295b6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet341\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\",\r\n \"etag\": \"W/\\\"3c66e51b-154f-4e7f-9f13-d8949aff8fe4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1bc73972-7dc3-44ba-a821-df84b2d85284\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\",\r\n \"fqdn\": \"azsmnet1938.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9595\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\",\r\n \"etag\": \"W/\\\"ee2f6ba4-bd5d-4feb-8792-dfbb1668a924\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cb89a34b-d55d-40ee-8983-bf02422475b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1544\",\r\n \"fqdn\": \"azsmnet1544.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "709" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,47 +154,48 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:11:51 GMT" + "Tue, 01 Aug 2017 10:27:05 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "12fbba8e-ab04-436d-84a1-625f46c202f6" + "c02b9b8d-1b2a-48e0-afab-0b066a4da144" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c02b9b8d-1b2a-48e0-afab-0b066a4da144?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "522c5d0c-d408-44ad-8d65-5eaa4e11191b" + "4085eef0-ba44-4dbb-b79c-41f9f2555a28" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121151Z:522c5d0c-d408-44ad-8d65-5eaa4e11191b" + "WESTEUROPE:20170801T102706Z:4085eef0-ba44-4dbb-b79c-41f9f2555a28" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/c02b9b8d-1b2a-48e0-afab-0b066a4da144?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzAyYjliOGQtMWIyYS00OGUwLWFmYWItMGIwNjZhNGRhMTQ0P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -206,7 +210,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:21 GMT" + "Tue, 01 Aug 2017 10:27:36 GMT" ], "Pragma": [ "no-cache" @@ -222,34 +226,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c1360664-0aae-44c8-a193-09c1f7e425af" + "f5120621-07e6-4823-aadf-c9c261088838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14995" ], "x-ms-correlation-request-id": [ - "4bbd411b-6201-4506-bc89-e250217f0a1f" + "6b7ac680-2ec5-4934-adb1-3d8c802a5975" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121221Z:4bbd411b-6201-4506-bc89-e250217f0a1f" + "WESTEUROPE:20170801T102736Z:6b7ac680-2ec5-4934-adb1-3d8c802a5975" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk1OTU/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet341\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\",\r\n \"etag\": \"W/\\\"457d7ee8-c511-4746-8956-bb42f7064e17\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bc73972-7dc3-44ba-a821-df84b2d85284\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\",\r\n \"fqdn\": \"azsmnet1938.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9595\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\",\r\n \"etag\": \"W/\\\"3d73aaf5-2e3c-4de9-921c-941625314631\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb89a34b-d55d-40ee-8983-bf02422475b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1544\",\r\n \"fqdn\": \"azsmnet1544.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -261,7 +266,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:21 GMT" + "Tue, 01 Aug 2017 10:27:37 GMT" ], "Pragma": [ "no-cache" @@ -270,7 +275,7 @@ "chunked" ], "ETag": [ - "W/\"457d7ee8-c511-4746-8956-bb42f7064e17\"" + "W/\"3d73aaf5-2e3c-4de9-921c-941625314631\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -280,40 +285,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ebc7c49d-8ca4-4b15-b595-195def1c260d" + "e75b8c49-6e3b-4e51-9283-38967b56c8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14994" ], "x-ms-correlation-request-id": [ - "41a001e2-cffc-4a3a-b2f8-7f25229fb625" + "f00e44e3-651c-4a08-a985-8867ee9ff7b6" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121221Z:41a001e2-cffc-4a3a-b2f8-7f25229fb625" + "WESTEUROPE:20170801T102737Z:f00e44e3-651c-4a08-a985-8867ee9ff7b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk1OTU/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71e63d0d-a265-4af6-bafc-003f1703401b" + "e8485007-372b-405f-bdcc-9f786cdf2e15" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet341\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\",\r\n \"etag\": \"W/\\\"457d7ee8-c511-4746-8956-bb42f7064e17\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bc73972-7dc3-44ba-a821-df84b2d85284\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\",\r\n \"fqdn\": \"azsmnet1938.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9595\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\",\r\n \"etag\": \"W/\\\"3d73aaf5-2e3c-4de9-921c-941625314631\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb89a34b-d55d-40ee-8983-bf02422475b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1544\",\r\n \"fqdn\": \"azsmnet1544.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +331,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:21 GMT" + "Tue, 01 Aug 2017 10:27:37 GMT" ], "Pragma": [ "no-cache" @@ -334,7 +340,7 @@ "chunked" ], "ETag": [ - "W/\"457d7ee8-c511-4746-8956-bb42f7064e17\"" + "W/\"3d73aaf5-2e3c-4de9-921c-941625314631\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -344,28 +350,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eadbf045-61d6-4a13-9c3a-ac7a374a62db" + "dcacf6b5-a719-4ece-b2b8-ac7414af8935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14993" ], "x-ms-correlation-request-id": [ - "a1d0b395-6037-427b-bda8-0737c7189b35" + "61721bc0-7662-4a6c-bfbb-4fe7abea438e" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121222Z:a1d0b395-6037-427b-bda8-0737c7189b35" + "WESTEUROPE:20170801T102738Z:61721bc0-7662-4a6c-bfbb-4fe7abea438e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNjE2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet4813\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6224\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -374,16 +380,17 @@ "401" ], "x-ms-client-request-id": [ - "0b2d175d-f91f-49b5-9bd9-b8c3623a4b88" + "af88d115-7bf6-4240-936a-f1e38a28cec9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2507\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507\",\r\n \"etag\": \"W/\\\"b6a9cfe1-55e7-4cb8-a98d-504d1b3c1459\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"13118078-d0e3-4b5a-92e9-b24d13e8dd5f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4813\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\",\r\n \"etag\": \"W/\\\"b6a9cfe1-55e7-4cb8-a98d-504d1b3c1459\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet1616\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616\",\r\n \"etag\": \"W/\\\"97314b71-27e7-41a8-9d67-2c58c5d55d2c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"609dad2b-bd17-49cb-bda1-9e4c80db8be1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6224\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\",\r\n \"etag\": \"W/\\\"97314b71-27e7-41a8-9d67-2c58c5d55d2c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1088" @@ -398,47 +405,48 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:22 GMT" + "Tue, 01 Aug 2017 10:27:39 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" + "16815707-0531-4cac-ba71-88b90ae4fa08" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/16815707-0531-4cac-ba71-88b90ae4fa08?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "ca01bf54-2c9a-4b6a-a59e-97505ad24aa6" + "d8cdce34-33fa-4e3d-b574-df1fbda44e63" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121222Z:ca01bf54-2c9a-4b6a-a59e-97505ad24aa6" + "WESTEUROPE:20170801T102739Z:d8cdce34-33fa-4e3d-b574-df1fbda44e63" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/16815707-0531-4cac-ba71-88b90ae4fa08?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTY4MTU3MDctMDUzMS00Y2FjLWJhNzEtODhiOTBhZTRmYTA4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -453,7 +461,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:52 GMT" + "Tue, 01 Aug 2017 10:28:09 GMT" ], "Pragma": [ "no-cache" @@ -469,34 +477,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eb0e7b4a-294d-4abb-82c2-b6e4205533cd" + "5cfe2bf6-5366-4987-b6cc-6336f645e63a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14992" ], "x-ms-correlation-request-id": [ - "bc5327d2-dddd-4c37-a160-d9b00e66cd68" + "4301af01-3808-45a9-a109-949fcfa3c6ae" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121252Z:bc5327d2-dddd-4c37-a160-d9b00e66cd68" + "WESTEUROPE:20170801T102810Z:4301af01-3808-45a9-a109-949fcfa3c6ae" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNjE2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2507\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507\",\r\n \"etag\": \"W/\\\"67da9dc4-5a50-4185-aeba-c7ecbaa311fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"13118078-d0e3-4b5a-92e9-b24d13e8dd5f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4813\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\",\r\n \"etag\": \"W/\\\"67da9dc4-5a50-4185-aeba-c7ecbaa311fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet1616\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616\",\r\n \"etag\": \"W/\\\"b637645c-ce88-4370-9b8d-bddee5d3990e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"609dad2b-bd17-49cb-bda1-9e4c80db8be1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6224\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\",\r\n \"etag\": \"W/\\\"b637645c-ce88-4370-9b8d-bddee5d3990e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -508,7 +517,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:52 GMT" + "Tue, 01 Aug 2017 10:28:10 GMT" ], "Pragma": [ "no-cache" @@ -517,7 +526,7 @@ "chunked" ], "ETag": [ - "W/\"67da9dc4-5a50-4185-aeba-c7ecbaa311fd\"" + "W/\"b637645c-ce88-4370-9b8d-bddee5d3990e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -527,40 +536,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f60e4d56-4889-4d30-9856-dc23efef16ec" + "b0e5a572-3a15-4cb9-b7f6-768628be4dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14991" ], "x-ms-correlation-request-id": [ - "55af479a-f7f5-43e8-9928-58f55ad1bc04" + "8696f56d-16a7-4ad9-a0ab-43e6da26638c" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121252Z:55af479a-f7f5-43e8-9928-58f55ad1bc04" + "WESTEUROPE:20170801T102810Z:8696f56d-16a7-4ad9-a0ab-43e6da26638c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNjE2L3N1Ym5ldHMvYXpzbW5ldDYyMjQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7445c1fe-b962-4a8b-9ce1-73b3b5c9f1c3" + "8de0384a-6f91-4548-80d8-ba5c35895cb8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4813\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\",\r\n \"etag\": \"W/\\\"67da9dc4-5a50-4185-aeba-c7ecbaa311fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6224\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\",\r\n \"etag\": \"W/\\\"b637645c-ce88-4370-9b8d-bddee5d3990e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -572,7 +582,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:53 GMT" + "Tue, 01 Aug 2017 10:28:10 GMT" ], "Pragma": [ "no-cache" @@ -581,7 +591,7 @@ "chunked" ], "ETag": [ - "W/\"67da9dc4-5a50-4185-aeba-c7ecbaa311fd\"" + "W/\"b637645c-ce88-4370-9b8d-bddee5d3990e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -591,49 +601,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cd8aafd6-21ea-473b-8ade-382807b728b9" + "7cce0e06-838d-49df-b095-2e6a8479bfdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14990" ], "x-ms-correlation-request-id": [ - "a0f4fe18-e60d-4e41-95fa-84486a546dba" + "58042702-a295-4b84-bad3-7699bc1b925c" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121253Z:a0f4fe18-e60d-4e41-95fa-84486a546dba" + "WESTEUROPE:20170801T102811Z:58042702-a295-4b84-bad3-7699bc1b925c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDE/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n }\r\n },\r\n \"name\": \"azsmnet6862\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n }\r\n },\r\n \"name\": \"azsmnet6753\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "675" + "676" ], "x-ms-client-request-id": [ - "4299e17e-20a2-4647-a248-4462b8267d67" + "81dfad8a-f100-4195-858d-d0ed92c6f3c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9d4fbad-32ed-44b5-8249-8fd4b969b35b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6862\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787/ipConfigurations/azsmnet6862\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pcabce5d0bnexexjwjgrh0g3lh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6941\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc49f2ff-e92b-4e09-989d-e745e22854a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fowz0yaxxxfutpnbtzgibw2l2b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1671" + "1715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,7 +656,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:53 GMT" + "Tue, 01 Aug 2017 10:28:14 GMT" ], "Pragma": [ "no-cache" @@ -655,37 +666,38 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "59f8cc76-3006-45fc-a35f-52a40040e9b4" + "ca285718-415c-4747-831e-1f6d87bcef14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/ca285718-415c-4747-831e-1f6d87bcef14?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "b3f3e183-14cd-412a-afe6-00e87df5db34" + "dc2b8845-4cd6-4988-bd5e-af2a36698c91" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121254Z:b3f3e183-14cd-412a-afe6-00e87df5db34" + "WESTEUROPE:20170801T102815Z:dc2b8845-4cd6-4988-bd5e-af2a36698c91" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDE/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9d4fbad-32ed-44b5-8249-8fd4b969b35b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6862\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787/ipConfigurations/azsmnet6862\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pcabce5d0bnexexjwjgrh0g3lh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6941\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc49f2ff-e92b-4e09-989d-e745e22854a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fowz0yaxxxfutpnbtzgibw2l2b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -697,7 +709,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:54 GMT" + "Tue, 01 Aug 2017 10:28:15 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +718,7 @@ "chunked" ], "ETag": [ - "W/\"313e2f4f-e8ca-4435-a09f-86ab49389b49\"" + "W/\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -716,40 +728,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6026cb3-7f3a-439f-900d-af0d8e31465d" + "76038ed0-7694-4e7b-b795-d40db6f5bc39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14989" ], "x-ms-correlation-request-id": [ - "e46bfe9d-fed4-4a4e-bd2d-c7f74ad7b4d3" + "1455b337-a1b4-4e94-a4a8-37d026d72e4c" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121254Z:e46bfe9d-fed4-4a4e-bd2d-c7f74ad7b4d3" + "WESTEUROPE:20170801T102815Z:1455b337-a1b4-4e94-a4a8-37d026d72e4c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDE/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2b31431-79d9-481f-a00f-4c6eec58418d" + "c8457799-f750-416c-b96b-d5388654fced" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9d4fbad-32ed-44b5-8249-8fd4b969b35b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6862\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787/ipConfigurations/azsmnet6862\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pcabce5d0bnexexjwjgrh0g3lh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6941\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc49f2ff-e92b-4e09-989d-e745e22854a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fowz0yaxxxfutpnbtzgibw2l2b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -761,7 +774,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:54 GMT" + "Tue, 01 Aug 2017 10:28:15 GMT" ], "Pragma": [ "no-cache" @@ -770,7 +783,7 @@ "chunked" ], "ETag": [ - "W/\"313e2f4f-e8ca-4435-a09f-86ab49389b49\"" + "W/\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -780,40 +793,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4586f4ae-f49f-4f9e-aca7-1a27796e32d5" + "001acb8d-9e7a-4c32-b8a5-17c6f7016468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14988" ], "x-ms-correlation-request-id": [ - "553e2e17-27b1-4436-a8d3-92bfb6a1e7aa" + "20ce443e-2cde-4fdb-a6b1-431509571c1b" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121254Z:553e2e17-27b1-4436-a8d3-92bfb6a1e7aa" + "WESTEUROPE:20170801T102815Z:20ce443e-2cde-4fdb-a6b1-431509571c1b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDEvaXBDb25maWd1cmF0aW9ucz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "277b2c7e-88a0-416e-89cf-7daf133e78a9" + "68d4cff3-be84-47e2-85a8-5dfeaaa99a06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet8787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9d4fbad-32ed-44b5-8249-8fd4b969b35b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6862\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787/ipConfigurations/azsmnet6862\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pcabce5d0bnexexjwjgrh0g3lh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -825,7 +839,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:54 GMT" + "Tue, 01 Aug 2017 10:28:15 GMT" ], "Pragma": [ "no-cache" @@ -841,40 +855,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "44740186-a893-4ee9-8f79-4e18b1b51381" + "6f45ddea-c993-474a-8caa-996b8abf3dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14987" ], "x-ms-correlation-request-id": [ - "64a168f0-d918-459e-a077-594568cf09f4" + "8c5ea711-db2a-401d-b924-7ba336e121d8" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121254Z:64a168f0-d918-459e-a077-594568cf09f4" + "WESTEUROPE:20170801T102816Z:8c5ea711-db2a-401d-b924-7ba336e121d8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDEvaXBDb25maWd1cmF0aW9ucy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4166225a-23ab-4dc2-b5d2-eccbddddb557" + "9507a4d9-2482-4733-b446-1fc09a62fa7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -886,49 +901,184 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:13:27 GMT" + "Tue, 01 Aug 2017 10:28:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Vary": [ "Accept-Encoding" ], + "x-ms-request-id": [ + "1cb950f3-474a-4ff5-bf07-857078e8defa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14986" + ], + "x-ms-correlation-request-id": [ + "6d5864f8-1ca2-4947-8a1a-728aaf117ade" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T102816Z:6d5864f8-1ca2-4947-8a1a-728aaf117ade" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/loadBalancers?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDEvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8fbcc54-87bf-4e89-a877-dda00861372b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:28:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "d99390f9-323e-48af-9844-a2cf11cbc8fb" + "38c75629-3712-4264-9b5d-94eafeded5b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" ], "x-ms-correlation-request-id": [ - "d99390f9-323e-48af-9844-a2cf11cbc8fb" + "51dbd538-30c7-4fb9-870a-fb4333225da2" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121328Z:d99390f9-323e-48af-9844-a2cf11cbc8fb" + "WESTEUROPE:20170801T102816Z:51dbd538-30c7-4fb9-870a-fb4333225da2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c31afb0d-5be9-4deb-bafe-912213c94a16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet6941\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc49f2ff-e92b-4e09-989d-e745e22854a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fowz0yaxxxfutpnbtzgibw2l2b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3b8394b3-a419-4c90-9433-afe39c4e7914" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "62f0a7e9-ea8c-46cd-974a-031d2aa61856" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T102816Z:62f0a7e9-ea8c-46cd-974a-031d2aa61856" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ad2fa29-a64a-40ea-80eb-72875aab1ecd" + "bb9929b2-321b-4d19-80d9-72bd60df0b12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/addresspacetest/providers/Microsoft.Network/networkInterfaces/nic\",\r\n \"etag\": \"W/\\\"38bbb395-3899-4cb0-9052-a25c941c7764\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4431e93e-d88f-4878-afb8-7b5ef6866139\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/addresspacetest/providers/Microsoft.Network/networkInterfaces/nic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"38bbb395-3899-4cb0-9052-a25c941c7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/addresspacetest/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zojhhzkeyziu5lmchintrl4iyh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"azsmnet8787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9d4fbad-32ed-44b5-8249-8fd4b969b35b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6862\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787/ipConfigurations/azsmnet6862\",\r\n \"etag\": \"W/\\\"313e2f4f-e8ca-4435-a09f-86ab49389b49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pcabce5d0bnexexjwjgrh0g3lh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"azsmnet3688\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7295/providers/Microsoft.Network/networkInterfaces/azsmnet3688\",\r\n \"etag\": \"W/\\\"cbf66604-2621-4c4b-ab55-b14bad254dce\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dab792fa-dce0-48df-9c1b-905a8b3f1451\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet787\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7295/providers/Microsoft.Network/networkInterfaces/azsmnet3688/ipConfigurations/azsmnet787\",\r\n \"etag\": \"W/\\\"cbf66604-2621-4c4b-ab55-b14bad254dce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7295/providers/Microsoft.Network/publicIPAddresses/azsmnet9117\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7295/providers/Microsoft.Network/virtualNetworks/azsmnet5712/subnets/azsmnet343\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"deeepaknic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/0/networkInterfaces/deeepaknic\",\r\n \"etag\": \"W/\\\"51ccebd3-9cad-4613-9004-ad9b9bd235b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"365cd0ed-bc87-4178-aa88-ddc88401b37e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"deeepakipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/0/networkInterfaces/deeepaknic/ipConfigurations/deeepakipconfig\",\r\n \"etag\": \"W/\\\"51ccebd3-9cad-4613-9004-ad9b9bd235b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/virtualNetworks/deeepakvnet/subnets/deeepaksubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/backendAddressPools/deeepakbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/inboundNatRules/deeepaknatpool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-33-7E-C3\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachines/deeepak_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"deeepaknic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/1/networkInterfaces/deeepaknic\",\r\n \"etag\": \"W/\\\"3a345074-5eea-49c7-badc-13e8d62f8892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30154cb3-d077-4edf-91c2-e4b9d23dde69\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"deeepakipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/1/networkInterfaces/deeepaknic/ipConfigurations/deeepakipconfig\",\r\n \"etag\": \"W/\\\"3a345074-5eea-49c7-badc-13e8d62f8892\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/virtualNetworks/deeepakvnet/subnets/deeepaksubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/backendAddressPools/deeepakbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/inboundNatRules/deeepaknatpool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-33-81-E1\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachines/deeepak_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"deeepaknic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/2/networkInterfaces/deeepaknic\",\r\n \"etag\": \"W/\\\"e64055cb-5efd-4729-b561-33a7ab59d676\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"349a8846-3195-44e2-832f-208b35259f55\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"deeepakipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/2/networkInterfaces/deeepaknic/ipConfigurations/deeepakipconfig\",\r\n \"etag\": \"W/\\\"e64055cb-5efd-4729-b561-33a7ab59d676\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/virtualNetworks/deeepakvnet/subnets/deeepaksubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/backendAddressPools/deeepakbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/inboundNatRules/deeepaknatpool.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-DC-BF\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachines/deeepak_2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"deeepaknic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/3/networkInterfaces/deeepaknic\",\r\n \"etag\": \"W/\\\"34cae587-4c38-439b-a3eb-6a78c9773844\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad67b994-9933-40b3-b9c7-575c675a44c3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"deeepakipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachineScaleSets/deeepak/virtualMachines/3/networkInterfaces/deeepaknic/ipConfigurations/deeepakipconfig\",\r\n \"etag\": \"W/\\\"34cae587-4c38-439b-a3eb-6a78c9773844\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/virtualNetworks/deeepakvnet/subnets/deeepaksubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/backendAddressPools/deeepakbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Network/loadBalancers/deeepaklb/inboundNatRules/deeepaknatpool.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-DF-DC\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakTest1/providers/Microsoft.Compute/virtualMachines/deeepak_3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"1a8707ed-7f38-412d-ba0b-ff69cbe46fa6\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a38b981a-f5c7-42e2-988e-1ac94ccf4b30\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1a8707ed-7f38-412d-ba0b-ff69cbe46fa6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/virtualNetworks/vnetdeepaktest3/subnets/subnetdeepaktest3\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicdeepaktest3\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkInterfaces/nicdeepaktest3\",\r\n \"etag\": \"W/\\\"cbe88d23-835f-4ef3-8aed-03b4dbcf6547\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"680e69d6-3331-42de-b1fb-1977731a3d79\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkInterfaces/nicdeepaktest3/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cbe88d23-835f-4ef3-8aed-03b4dbcf6547\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/publicIPAddresses/pubipdeepaktest3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/virtualNetworks/vnetdeepaktest3/subnets/subnetdeepaktest3\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"kaynic6\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakvmcreate/providers/Microsoft.Network/networkInterfaces/kaynic6\",\r\n \"etag\": \"W/\\\"ed53741e-7538-471c-ae76-22cdba5e52ad\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8dc23843-d78a-4f96-8ba0-fe07aed4b953\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakvmcreate/providers/Microsoft.Network/networkInterfaces/kaynic6/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ed53741e-7538-471c-ae76-22cdba5e52ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakvmcreate/providers/Microsoft.Network/publicIPAddresses/kaynic6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakvmcreate/providers/Microsoft.Network/virtualNetworks/kaynet6/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"myVMNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/FrankLinuxDevVM/providers/Microsoft.Network/networkInterfaces/myVMNic\",\r\n \"etag\": \"W/\\\"8db71dcb-3071-4d7f-ab68-a0e917d4834c\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"NetworkInterface\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f51e56d0-4ddd-43b4-9dc2-4e0169037601\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/FrankLinuxDevVM/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8db71dcb-3071-4d7f-ab68-a0e917d4834c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/FrankLinuxDevVM/providers/Microsoft.Network/publicIPAddresses/franklinuxdev\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/FrankLinuxDevVM/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bzv0g5ytf5velf4fm4fjvulxyg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-30-FD-CD\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/FrankLinuxDevVM/providers/Microsoft.Compute/virtualMachines/MyUbuntuVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicclipv6_1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nicclipv6_1\",\r\n \"etag\": \"W/\\\"e9531026-d5d0-4e0f-b56c-94f07e51d2a1\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5cb9cb6-0291-4500-ade3-bdc24f8c54c0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"default-ip-config\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nicclipv6_1/ipConfigurations/default-ip-config\",\r\n \"etag\": \"W/\\\"e9531026-d5d0-4e0f-b56c-94f07e51d2a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnetwestus1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"aploarqdnbbezlt5gbc32yg3rb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"mynic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/mynic\",\r\n \"etag\": \"W/\\\"1c16e2b5-f7a7-4108-bfb0-d63e17a7146a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3992ba8-4a31-4514-a415-48c971a8a50d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/mynic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1c16e2b5-f7a7-4108-bfb0-d63e17a7146a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/frontendSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/loadBalancers/lbname1/backendAddressPools/bepool1\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/loadBalancers/lbname1/inboundNatRules/inbound1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"deploymentUnitTest_nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/migrationUnitTestResourceGroup/providers/Microsoft.Network/networkInterfaces/deploymentUnitTest_nic\",\r\n \"etag\": \"W/\\\"7802a404-0a6c-4ee6-b677-aedee68fab29\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"91867af5-87a0-4311-aba3-3d1e23dc93ec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"deploymentUnitTest_nicConfig0\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/migrationUnitTestResourceGroup/providers/Microsoft.Network/networkInterfaces/deploymentUnitTest_nic/ipConfigurations/deploymentUnitTest_nicConfig0\",\r\n \"etag\": \"W/\\\"7802a404-0a6c-4ee6-b677-aedee68fab29\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.0\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/migrationUnitTestResourceGroup/providers/Microsoft.Network/publicIPAddresses/publicIpTest\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/migrationUnitTestResourceGroup/providers/Microsoft.Network/virtualNetworks/migrationUnitTestVN/subnets/Subnet-1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicmultivip\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/multiviptest/providers/Microsoft.Network/networkInterfaces/nicmultivip\",\r\n \"etag\": \"W/\\\"f337deaa-0947-46d6-bb67-42e3168f469d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7110204-5786-4491-82a3-4d592750c42d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/multiviptest/providers/Microsoft.Network/networkInterfaces/nicmultivip/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f337deaa-0947-46d6-bb67-42e3168f469d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/multivipTest/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"testnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpcsme2etest-eb34b8b5-5075-45b7-bfe0-8c8fdc6b80a3/providers/Microsoft.Network/networkInterfaces/testnic\",\r\n \"etag\": \"W/\\\"10f44202-4c55-4590-aa32-b74a541d20c4\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"resourceGuid\": \"2237f238-5c0d-4c58-80fb-d783f06c8e87\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpcsme2etest-eb34b8b5-5075-45b7-bfe0-8c8fdc6b80a3/providers/Microsoft.Network/networkInterfaces/testnic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"10f44202-4c55-4590-aa32-b74a541d20c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpcsme2etest-eb34b8b5-5075-45b7-bfe0-8c8fdc6b80a3/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet0\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"primary\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nrpdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/0/networkInterfaces/nrpdemonic\",\r\n \"etag\": \"W/\\\"ccb50d03-4c71-43ee-9abb-34dd9d34d4c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9262244b-edb1-4f94-a6d9-8a913cdc577c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"nrpdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/0/networkInterfaces/nrpdemonic/ipConfigurations/nrpdemoipconfig\",\r\n \"etag\": \"W/\\\"ccb50d03-4c71-43ee-9abb-34dd9d34d4c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/virtualNetworks/nrpdemovnet/subnets/nrpdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/backendAddressPools/nrpdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/inboundNatRules/nrpdemonatpool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-2F-C4\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachines/nrpdemo_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nrpdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/1/networkInterfaces/nrpdemonic\",\r\n \"etag\": \"W/\\\"2e36252f-5b02-4aab-a5ec-259d47fcfbdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c8e03c3d-26b1-4972-9d42-4143f4bcb909\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"nrpdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/1/networkInterfaces/nrpdemonic/ipConfigurations/nrpdemoipconfig\",\r\n \"etag\": \"W/\\\"2e36252f-5b02-4aab-a5ec-259d47fcfbdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/virtualNetworks/nrpdemovnet/subnets/nrpdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/backendAddressPools/nrpdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/inboundNatRules/nrpdemonatpool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-20-A2\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachines/nrpdemo_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nrpdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/2/networkInterfaces/nrpdemonic\",\r\n \"etag\": \"W/\\\"43f12d3e-35e3-440e-b244-8a1c37109bee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"621418ec-1c67-4f84-8967-56ec77b79e64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"nrpdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/2/networkInterfaces/nrpdemonic/ipConfigurations/nrpdemoipconfig\",\r\n \"etag\": \"W/\\\"43f12d3e-35e3-440e-b244-8a1c37109bee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/virtualNetworks/nrpdemovnet/subnets/nrpdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/backendAddressPools/nrpdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/inboundNatRules/nrpdemonatpool.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-25-90\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachines/nrpdemo_2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nrpdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/3/networkInterfaces/nrpdemonic\",\r\n \"etag\": \"W/\\\"ce7067e3-1ec7-465c-8045-8232117fda16\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7036c93c-4331-4455-947a-db68da2028ac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"nrpdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachineScaleSets/nrpdemo/virtualMachines/3/networkInterfaces/nrpdemonic/ipConfigurations/nrpdemoipconfig\",\r\n \"etag\": \"W/\\\"ce7067e3-1ec7-465c-8045-8232117fda16\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/virtualNetworks/nrpdemovnet/subnets/nrpdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/backendAddressPools/nrpdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Network/loadBalancers/nrpdemolb/inboundNatRules/nrpdemonatpool.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-20-EE\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpdemo/providers/Microsoft.Compute/virtualMachines/nrpdemo_3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"myVMNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpPublisher/providers/Microsoft.Network/networkInterfaces/myVMNic\",\r\n \"etag\": \"W/\\\"13a24c81-6352-47da-9284-d20ab09ac1b9\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49436586-dfa8-4868-bc51-ab283288d37e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpPublisher/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"13a24c81-6352-47da-9284-d20ab09ac1b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpPublisher/providers/Microsoft.Network/publicIPAddresses/myPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpPublisher/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-32-EC-B5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/nrpPublisher/providers/Microsoft.Compute/virtualMachines/MyWindowsVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"azsmnet2985\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pslibtest5371/providers/Microsoft.Network/networkInterfaces/azsmnet2985\",\r\n \"etag\": \"W/\\\"d254d488-46d1-40e8-9431-8d4e9a47fb19\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0234c8bd-cc97-4c51-9f70-305b7962efaa\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8581\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pslibtest5371/providers/Microsoft.Network/networkInterfaces/azsmnet2985/ipConfigurations/azsmnet8581\",\r\n \"etag\": \"W/\\\"d254d488-46d1-40e8-9431-8d4e9a47fb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pslibtest5371/providers/Microsoft.Network/virtualNetworks/azsmnet8188/subnets/azsmnet7169\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg1638\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg1638/providers/Microsoft.Network/networkInterfaces/nicpstestrg1638\",\r\n \"etag\": \"W/\\\"55a1204e-9aec-4ddf-90a2-6a382e9d80ee\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4caf3427-aa0d-4f4e-be6f-d53d975b8210\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg1638/providers/Microsoft.Network/networkInterfaces/nicpstestrg1638/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"55a1204e-9aec-4ddf-90a2-6a382e9d80ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg1638/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1638\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg1638/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1638/subnets/subnetpstestrg1638\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg3031\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3031/providers/Microsoft.Network/networkInterfaces/nicpstestrg3031\",\r\n \"etag\": \"W/\\\"ee981ca5-f063-4679-9f84-79d77cf8ae4c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60eebd1f-ff37-4198-bb20-6c34b04e6eab\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3031/providers/Microsoft.Network/networkInterfaces/nicpstestrg3031/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ee981ca5-f063-4679-9f84-79d77cf8ae4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3031/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3031\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3031/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3031/subnets/subnetpstestrg3031\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg329\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg329/providers/Microsoft.Network/networkInterfaces/nicpstestrg329\",\r\n \"etag\": \"W/\\\"cc8afb5c-37a0-4036-946c-f0774d669869\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a24c6da-534d-406f-b08d-f222edef05bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg329/providers/Microsoft.Network/networkInterfaces/nicpstestrg329/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc8afb5c-37a0-4036-946c-f0774d669869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg329/providers/Microsoft.Network/publicIPAddresses/pubippstestrg329\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg329/providers/Microsoft.Network/virtualNetworks/vnetpstestrg329/subnets/subnetpstestrg329\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg3325\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3325/providers/Microsoft.Network/networkInterfaces/nicpstestrg3325\",\r\n \"etag\": \"W/\\\"f2353979-28e4-405c-99e4-a0a50b2a2896\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2273d0a-a9bd-4e30-907f-9fed09977ca2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3325/providers/Microsoft.Network/networkInterfaces/nicpstestrg3325/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f2353979-28e4-405c-99e4-a0a50b2a2896\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3325/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3325\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg3325/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3325/subnets/subnetpstestrg3325\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg5717\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5717/providers/Microsoft.Network/networkInterfaces/nicpstestrg5717\",\r\n \"etag\": \"W/\\\"3c4e10a4-19f8-4315-9575-6753ac1a8a69\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2f63d8e-edd6-4803-a5b4-2b744abde867\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5717/providers/Microsoft.Network/networkInterfaces/nicpstestrg5717/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3c4e10a4-19f8-4315-9575-6753ac1a8a69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5717/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5717\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5717/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5717/subnets/subnetpstestrg5717\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg6075\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg6075/providers/Microsoft.Network/networkInterfaces/nicpstestrg6075\",\r\n \"etag\": \"W/\\\"2569d2c5-90cb-4825-b9c1-65cb5a3fbc17\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7a661ec-d0d0-4ee7-b34f-d6c1a7efae17\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg6075/providers/Microsoft.Network/networkInterfaces/nicpstestrg6075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2569d2c5-90cb-4825-b9c1-65cb5a3fbc17\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg6075/providers/Microsoft.Network/publicIPAddresses/pubippstestrg6075\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg6075/providers/Microsoft.Network/virtualNetworks/vnetpstestrg6075/subnets/subnetpstestrg6075\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/resourceGroup-9cd0574c-dfbe-4eb4-8837-8ae7c50fab3c/providers/Microsoft.Network/networkInterfaces/nic\",\r\n \"etag\": \"W/\\\"5ea7bd07-b610-4eb4-aff8-80f3fe56df89\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2134b0ba-4ce0-4dff-9865-33b3d0473fc8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/resourceGroup-9cd0574c-dfbe-4eb4-8837-8ae7c50fab3c/providers/Microsoft.Network/networkInterfaces/nic/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"5ea7bd07-b610-4eb4-aff8-80f3fe56df89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.1.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/resourceGroup-9cd0574c-dfbe-4eb4-8837-8ae7c50fab3c/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic12\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/rg1/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"etag\": \"W/\\\"8f85ceff-af79-4287-adb3-a1f5b6cb6e68\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9704c7d1-88c5-4a85-8c79-b328d7c63d58\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/rg1/providers/Microsoft.Network/networkInterfaces/nic12/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8f85ceff-af79-4287-adb3-a1f5b6cb6e68\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet12/subnets/subnet12\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"aoxcpcliy1kunnvfuij2h24s2c.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic1\",\r\n \"etag\": \"W/\\\"fceee8cb-ba10-4a75-b7a9-6d22747b8f5a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b05c4fb-0636-4538-9ff2-1957aceadfe3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"fceee8cb-ba10-4a75-b7a9-6d22747b8f5a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/publicIPAddresses/FEVM2_PIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/FESubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-30-3D-25\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Compute/virtualMachines/FrontEndVM2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Nic2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic2\",\r\n \"etag\": \"W/\\\"292ce84a-d2ba-4e15-9d45-64c12aa287a1\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7913f98-e3fb-4492-99c4-b22f1531a0a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"292ce84a-d2ba-4e15-9d45-64c12aa287a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/publicIPAddresses/NVAVM2_PIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/ApplianceSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-30-3D-C9\",\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Compute/virtualMachines/NVAVM2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Nic3\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic3\",\r\n \"etag\": \"W/\\\"f471d26a-c14d-4436-a1cf-fbf36504594d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0875798-f4fc-4637-aaef-b1804fcfe126\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkInterfaces/Nic3/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f471d26a-c14d-4436-a1cf-fbf36504594d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/publicIPAddresses/BEVM2_PIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/BESubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-30-34-E5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Compute/virtualMachines/BackEndVM2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shriramLecture1/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"e6185a88-562a-4d7e-9953-5789e49490b9\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c92ee30a-7b23-45d2-8547-c6c788ba12df\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shriramLecture1/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e6185a88-562a-4d7e-9953-5789e49490b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shriramLecture1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"o50jabyqdttu1jkdamufwedyzc.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicsriksnrptest\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksnrptest/providers/Microsoft.Network/networkInterfaces/nicsriksnrptest\",\r\n \"etag\": \"W/\\\"0d5572fa-7f2f-4b1e-96b9-09cc5854dd28\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21794e0f-b109-44d2-891c-e4f2b0858dec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksnrptest/providers/Microsoft.Network/networkInterfaces/nicsriksnrptest/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0d5572fa-7f2f-4b1e-96b9-09cc5854dd28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksnrptest/providers/Microsoft.Network/publicIPAddresses/pubipsriksnrptest\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksnrptest/providers/Microsoft.Network/virtualNetworks/vnetsriksnrptest/subnets/subnetsriksnrptest\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"3c45bbd0-d7bb-46b1-bb49-80c479422920\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62ae5cf3-e523-4572-b6a6-1043d87be2ea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3c45bbd0-d7bb-46b1-bb49-80c479422920\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/virtualNetworks/myVNET/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/loadBalancers/myLB/backendAddressPools/BackendPool1\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/loadBalancers/myLB/inboundNatRules/RDP-VM0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-30-50-6D\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Compute/virtualMachines/myVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"etag\": \"W/\\\"5ba12b5e-6b88-4b67-9c82-b728a71e093d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"862f6249-e705-4f9a-83cc-81567afa2fa7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/networkInterfaces/nic2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5ba12b5e-6b88-4b67-9c82-b728a71e093d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Network/virtualNetworks/myVNET/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-31-01-49\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/tempdeepak/providers/Microsoft.Compute/virtualMachines/myVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"mynic2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkInterfaces/mynic2\",\r\n \"etag\": \"W/\\\"c1ffc80a-e51b-4740-bcc3-8b67eb60197a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b1b9d47-59e6-4fc8-927f-c49ee05c2982\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"NIC-config\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkInterfaces/mynic2/ipConfigurations/NIC-config\",\r\n \"etag\": \"W/\\\"c1ffc80a-e51b-4740-bcc3-8b67eb60197a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/publicIPAddresses/mypublicip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/subnet2\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"a946303a-fb4f-4627-b273-744b6cc3c767\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e8d81b31-534c-47a3-8789-17ce3747ed77\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a946303a-fb4f-4627-b273-744b6cc3c767\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/frontendSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration10-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration10-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration10-PrimaryNic\",\r\n \"etag\": \"W/\\\"ed5aecac-33b5-4aea-95ef-1ba30358a108\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d08df8b4-3cf2-4df0-95d6-04b8c71cd79a\",\r\n \"migrationPhase\": \"Prepare\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration10-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration10-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration10-PrimaryNic/ipConfigurations/xrpmigration10-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"ed5aecac-33b5-4aea-95ef-1ba30358a108\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.18.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationtest-existing-vnet/providers/Microsoft.Network/virtualNetworks/xrpmigrationtest-existing-vnet/subnets/default\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration10-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration10-PublicLoadBalancer/inboundNatRules/PowerShell\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration10-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration10-PublicLoadBalancer/inboundNatRules/Remote-Desktop\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/XRPMIGRATION10-MIGRATED/providers/Microsoft.Compute/virtualMachines/xrpmigration10\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration9-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration9-PrimaryNic\",\r\n \"etag\": \"W/\\\"2b86195f-5438-4391-b362-2ef50529d762\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b11dd667-960e-43a4-bf27-f9e8d7a344b1\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration9-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration9-PrimaryNic/ipConfigurations/xrpmigration9-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"2b86195f-5438-4391-b362-2ef50529d762\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration9-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration9-PublicLoadBalancer/inboundNatRules/PowerShell-xrpmigration9\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration9-PublicLoadBalancer/inboundNatRules/Remote-Desktop-xrpmigration9\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h5mvpfqorjruzaycmwvtqaicld.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-32-63-F5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration9-Migrated/providers/Microsoft.Compute/virtualMachines/xrpmigration9\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"CliMigrationVm2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/CliMigrationVm2-Migrated/providers/Microsoft.Network/networkInterfaces/CliMigrationVm2-PrimaryNic\",\r\n \"etag\": \"W/\\\"6a91d3ed-01e0-40dd-843b-b96b66d29c6d\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"72d9a04a-8541-440d-8e0b-5156ef5e5add\",\r\n \"migrationPhase\": \"Prepare\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"CliMigrationVm2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/CliMigrationVm2-Migrated/providers/Microsoft.Network/networkInterfaces/CliMigrationVm2-PrimaryNic/ipConfigurations/CliMigrationVm2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"6a91d3ed-01e0-40dd-843b-b96b66d29c6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/CliMigrationTesting-Migrated/providers/Microsoft.Network/virtualNetworks/CliMigrationTesting/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/CliMigrationVm2-Migrated/providers/Microsoft.Network/loadBalancers/CliMigrationVm2-PublicLoadBalancer/inboundNatRules/Remote-Desktop-CliMigrationVm2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/CliMigrationVm2-Migrated/providers/Microsoft.Network/loadBalancers/CliMigrationVm2-PublicLoadBalancer/inboundNatRules/WinRM-CliMigrationVm2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"CliMigrationVm2.b9.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"69b33380-0f86-4c70-ba9a-40465133b9af\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c71763f-8c83-45f8-84de-d534ba364e58\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"69b33380-0f86-4c70-ba9a-40465133b9af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a3hlagwflsrezd4fj3ubvnnj1f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic10\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"etag\": \"W/\\\"09aa0f84-2d59-427f-a4c1-b133e86c5e88\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98ec1ff2-ca04-4910-a352-cf58f0aa1329\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic10/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"09aa0f84-2d59-427f-a4c1-b133e86c5e88\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic10/ipConfigurations/ipconfig2\",\r\n \"etag\": \"W/\\\"09aa0f84-2d59-427f-a4c1-b133e86c5e88\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": \"IPv6\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a3hlagwflsrezd4fj3ubvnnj1f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic3\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"etag\": \"W/\\\"a6b51384-8199-442c-a1d3-c95c35cd4e82\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7d32ac5-2a30-4415-94e3-55aedab977ed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic3/ipConfigurations/ipconig1\",\r\n \"etag\": \"W/\\\"a6b51384-8199-442c-a1d3-c95c35cd4e82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a3hlagwflsrezd4fj3ubvnnj1f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic4\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"etag\": \"W/\\\"2d416580-af6d-4f5c-9c47-9a64cb3b01ee\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"666101ca-fe75-419f-a5b1-a4b1993866e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic4/ipConfigurations/ipconfig2\",\r\n \"etag\": \"W/\\\"2d416580-af6d-4f5c-9c47-9a64cb3b01ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": \"IPv6\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/nic4/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2d416580-af6d-4f5c-9c47-9a64cb3b01ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/publicIPAddresses/pib1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a3hlagwflsrezd4fj3ubvnnj1f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"niccliv6\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/niccliv6\",\r\n \"etag\": \"W/\\\"d3ffb169-2544-49bc-87c3-1946cca6e32d\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38eb85e8-68c3-45f4-b771-121da3423e40\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"default-ip-config\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/networkInterfaces/niccliv6/ipConfigurations/default-ip-config\",\r\n \"etag\": \"W/\\\"d3ffb169-2544-49bc-87c3-1946cca6e32d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ipv6trial/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a3hlagwflsrezd4fj3ubvnnj1f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic0\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"etag\": \"W/\\\"12db8151-1f99-46f6-9b53-bea31a01f26b\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ed140fe-0b32-484c-9a29-2b965bf9abe5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/networkInterfaces/nic0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"12db8151-1f99-46f6-9b53-bea31a01f26b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/virtualNetworks/myVNET/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/loadBalancers/myLB/backendAddressPools/LoadBalancerBackend\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/loadBalancers/myLB/inboundNatRules/RDP-VM0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"dnslocal\",\r\n \"internalFqdn\": \"dnslocal.j3gyy513wusujgkhqrbtumxzab.bx.internal.cloudapp.net\",\r\n \"internalDomainNameSuffix\": \"j3gyy513wusujgkhqrbtumxzab.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-11-A6-32\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Compute/virtualMachines/myVM0\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"7088ffad-e435-44cd-b2fd-38a7d5449c83\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"74f1f4dd-68f0-4cdf-a431-ee917a4c4e9b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7088ffad-e435-44cd-b2fd-38a7d5449c83\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/virtualNetworks/myVNET/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/loadBalancers/myLB/backendAddressPools/LoadBalancerBackend\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Network/loadBalancers/myLB/inboundNatRules/RDP-VM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"dnslocal2\",\r\n \"internalFqdn\": \"dnslocal2.j3gyy513wusujgkhqrbtumxzab.bx.internal.cloudapp.net\",\r\n \"internalDomainNameSuffix\": \"j3gyy513wusujgkhqrbtumxzab.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-11-AE-F6\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lbvmtestdeepak/providers/Microsoft.Compute/virtualMachines/myVM1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"vmsstestnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/0/networkInterfaces/vmsstestnic\",\r\n \"etag\": \"W/\\\"9fe8c6e2-fd97-44f6-b57a-e16020055703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f5d1cad-e3ec-42f7-aff4-ce7245d57173\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/0/networkInterfaces/vmsstestnic/ipConfigurations/vmsstestipconfig\",\r\n \"etag\": \"W/\\\"9fe8c6e2-fd97-44f6-b57a-e16020055703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/virtualNetworks/vmsstestvnet/subnets/vmsstestsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/backendAddressPools/vmsstestbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/inboundNatRules/vmsstestnatpool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-E4-DD\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachines/vmsstest_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"vmsstestnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/1/networkInterfaces/vmsstestnic\",\r\n \"etag\": \"W/\\\"1b5334f9-0a5a-449f-9b17-7f3cf73da11c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7636f62d-c0d6-4f58-b055-abb2e7c7bf95\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/1/networkInterfaces/vmsstestnic/ipConfigurations/vmsstestipconfig\",\r\n \"etag\": \"W/\\\"1b5334f9-0a5a-449f-9b17-7f3cf73da11c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/virtualNetworks/vmsstestvnet/subnets/vmsstestsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/backendAddressPools/vmsstestbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/inboundNatRules/vmsstestnatpool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-EB-8E\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachines/vmsstest_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"vmsstestnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/2/networkInterfaces/vmsstestnic\",\r\n \"etag\": \"W/\\\"58cba6e5-c615-4b5c-b651-3175e5b8081a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1dfd0cc8-d466-4d2a-a909-a95d46173ee7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/2/networkInterfaces/vmsstestnic/ipConfigurations/vmsstestipconfig\",\r\n \"etag\": \"W/\\\"58cba6e5-c615-4b5c-b651-3175e5b8081a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/virtualNetworks/vmsstestvnet/subnets/vmsstestsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/backendAddressPools/vmsstestbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/inboundNatRules/vmsstestnatpool.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-EF-12\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachines/vmsstest_2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"vmsstestnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/3/networkInterfaces/vmsstestnic\",\r\n \"etag\": \"W/\\\"3dd7238b-2980-44eb-8d3e-0001ca3f1435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3fc6bb2-d26f-41b5-9e1f-6bcd3f2d5cfb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/3/networkInterfaces/vmsstestnic/ipConfigurations/vmsstestipconfig\",\r\n \"etag\": \"W/\\\"3dd7238b-2980-44eb-8d3e-0001ca3f1435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/virtualNetworks/vmsstestvnet/subnets/vmsstestsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/backendAddressPools/vmsstestbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/inboundNatRules/vmsstestnatpool.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-E9-13\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachines/vmsstest_3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"vmsstestnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/4/networkInterfaces/vmsstestnic\",\r\n \"etag\": \"W/\\\"692315e9-94c1-4c10-9147-f926da5e8b28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d47a0ea-d00c-48ed-b293-75091c508c80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstest/virtualMachines/4/networkInterfaces/vmsstestnic/ipConfigurations/vmsstestipconfig\",\r\n \"etag\": \"W/\\\"692315e9-94c1-4c10-9147-f926da5e8b28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/virtualNetworks/vmsstestvnet/subnets/vmsstestsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/backendAddressPools/vmsstestbepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Network/loadBalancers/vmsstestlb/inboundNatRules/vmsstestnatpool.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-EC-C5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmtestdeepak/providers/Microsoft.Compute/virtualMachines/vmsstest_4\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"xrpdhf2test-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf2test0znbuox4s70w05apniwg2cknr650qoki8aa7st98asu826brb1lcjmjxpaux-Migrated/providers/Microsoft.Network/networkInterfaces/xrpdhf2test-PrimaryNic\",\r\n \"etag\": \"W/\\\"88eae250-feaa-4edf-9813-88a174775a57\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2bee6a80-1e67-4f6b-be7b-182ca2262ffa\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpdhf2test-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf2test0znbuox4s70w05apniwg2cknr650qoki8aa7st98asu826brb1lcjmjxpaux-Migrated/providers/Microsoft.Network/networkInterfaces/xrpdhf2test-PrimaryNic/ipConfigurations/xrpdhf2test-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"88eae250-feaa-4edf-9813-88a174775a57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf2test-Migrated/providers/Microsoft.Network/virtualNetworks/xrpdhf2test/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf2test0znbuox4s70w05apniwg2cknr650qoki8aa7st98asu826brb1lcjmjxpaux-Migrated/providers/Microsoft.Network/loadBalancers/xrpdhf2test-PublicLoadBalancer/inboundNatRules/SSH-xrpdhf2test\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"yathinic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/Yathilogs0532/providers/Microsoft.Network/networkInterfaces/yathinic1\",\r\n \"etag\": \"W/\\\"e084ee2b-d761-4efa-8e97-4e85e872955e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94bbf263-ffeb-444a-ad4e-fe59de1d3cf1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/Yathilogs0532/providers/Microsoft.Network/networkInterfaces/yathinic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e084ee2b-d761-4efa-8e97-4e85e872955e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/Yathilogs0532/providers/Microsoft.Network/publicIPAddresses/yathipublicip1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/Yathilogs0532/providers/Microsoft.Network/virtualNetworks/yathivnet1/subnets/subnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"IdnsDebugVm2\",\r\n \"internalFqdn\": \"IdnsDebugVm2.ahakavwbjy1uddjpdazzqlbszg.bx.internal.cloudapp.net\",\r\n \"internalDomainNameSuffix\": \"ahakavwbjy1uddjpdazzqlbszg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"frankdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachineScaleSets/frankdemo/virtualMachines/0/networkInterfaces/frankdemonic\",\r\n \"etag\": \"W/\\\"64357518-8a45-4670-9361-4646c17f88a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5790997-0d8c-4742-9142-2df25f971e54\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"frankdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachineScaleSets/frankdemo/virtualMachines/0/networkInterfaces/frankdemonic/ipConfigurations/frankdemoipconfig\",\r\n \"etag\": \"W/\\\"64357518-8a45-4670-9361-4646c17f88a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/virtualNetworks/frankdemovnet/subnets/frankdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/loadBalancers/frankdemolb/backendAddressPools/frankdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/loadBalancers/frankdemolb/inboundNatRules/frankdemonatpool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-20-24-42\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachines/frankdemo_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frankdemonic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachineScaleSets/frankdemo/virtualMachines/1/networkInterfaces/frankdemonic\",\r\n \"etag\": \"W/\\\"9e3bfdb5-f3e4-45cc-ad7e-774adb92f913\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ac5b3049-07b9-42b2-9fe1-745202be6cac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"frankdemoipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachineScaleSets/frankdemo/virtualMachines/1/networkInterfaces/frankdemonic/ipConfigurations/frankdemoipconfig\",\r\n \"etag\": \"W/\\\"9e3bfdb5-f3e4-45cc-ad7e-774adb92f913\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/virtualNetworks/frankdemovnet/subnets/frankdemosubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/loadBalancers/frankdemolb/backendAddressPools/frankdemobepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Network/loadBalancers/frankdemolb/inboundNatRules/frankdemonatpool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-20-04-EB\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/frankdemo/providers/Microsoft.Compute/virtualMachines/frankdemo_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testrbac1/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"a6bd093d-23e2-474a-923f-da9d7d54143c\\\"\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"570f34d7-f893-4d7b-ab0a-2ad49dd36046\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"NIC-config\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testrbac1/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/NIC-config\",\r\n \"etag\": \"W/\\\"a6bd093d-23e2-474a-923f-da9d7d54143c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testrbac1/providers/Microsoft.Network/virtualNetworks/multivip/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicwesteudnsonnic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeudnsonnic/providers/Microsoft.Network/networkInterfaces/nicwesteudnsonnic\",\r\n \"etag\": \"W/\\\"dc78f7f4-c530-40a9-a110-a541f35e1ab6\\\"\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1761a784-49ef-4ff4-ac27-9abfac953d77\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeudnsonnic/providers/Microsoft.Network/networkInterfaces/nicwesteudnsonnic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"dc78f7f4-c530-40a9-a110-a541f35e1ab6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeudnsonnic/providers/Microsoft.Network/publicIPAddresses/pubipwesteudnsonnic\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeudnsonnic/providers/Microsoft.Network/virtualNetworks/vnetwesteudnsonnic/subnets/subnetwesteudnsonnic\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"8.8.8.8\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"b65e2d8b-90cb-49ec-9ebf-19ab5ecfe77d\\\"\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e6b793d-361b-4061-8dfe-9624dc773c99\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b65e2d8b-90cb-49ec-9ebf-19ab5ecfe77d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/publicIPAddresses/publicIp1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/frontendSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-20-F1-18\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Compute/virtualMachines/srikswesteuropevm\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicpstestrg9069\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg9069/providers/Microsoft.Network/networkInterfaces/nicpstestrg9069\",\r\n \"etag\": \"W/\\\"558ae115-75e1-488f-965e-21269a69da60\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ce50ad4-e84e-4f67-a12c-ce0abf19d561\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg9069/providers/Microsoft.Network/networkInterfaces/nicpstestrg9069/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"558ae115-75e1-488f-965e-21269a69da60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg9069/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9069\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg9069/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9069/subnets/subnetpstestrg9069\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"macAddress\": \"00-0D-3A-80-2A-D3\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg9069/providers/Microsoft.Compute/virtualMachines/vmpstestrg9069\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"lb1-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/networkInterfaces/lb1-PrimaryNic\",\r\n \"etag\": \"W/\\\"eccd9dc9-0d04-4ac0-995d-9eba5bf33948\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"231e5fa8-8763-446c-8bc4-8b74d569bf66\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"lb1-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/networkInterfaces/lb1-PrimaryNic/ipConfigurations/lb1-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"eccd9dc9-0d04-4ac0-995d-9eba5bf33948\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvnet-Migrated/providers/Microsoft.Network/virtualNetworks/sriksclassicvnet/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-webilb/backendAddressPools/weblbset\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-PublicLoadBalancer/inboundNatRules/PowerShell-lb1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-PublicLoadBalancer/inboundNatRules/RemoteDesktop-lb1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksilbdynamicvipeastasia.h8.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-80-22-A6\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Compute/virtualMachines/lb1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"lb2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/networkInterfaces/lb2-PrimaryNic\",\r\n \"etag\": \"W/\\\"40bb93d6-7fc6-46f8-a80c-be8bdaca0e4f\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8148787-f46e-4d91-ae03-20cbef64f0d7\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"lb2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/networkInterfaces/lb2-PrimaryNic/ipConfigurations/lb2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"40bb93d6-7fc6-46f8-a80c-be8bdaca0e4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.51\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvnet-Migrated/providers/Microsoft.Network/virtualNetworks/sriksclassicvnet/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-webilb/backendAddressPools/weblbset\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-PublicLoadBalancer/inboundNatRules/PowerShell-lb2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Network/loadBalancers/sriksilbdynamicvipeastasia-PublicLoadBalancer/inboundNatRules/RemoteDesktop-lb2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksilbdynamicvipeastasia.h8.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-80-23-AF\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksilbdynamicvipeastasia-Migrated/providers/Microsoft.Compute/virtualMachines/lb2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"myVMNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiDebugTest20/providers/Microsoft.Network/networkInterfaces/myVMNic\",\r\n \"etag\": \"W/\\\"e629fbce-e762-45f6-b13c-457fbd608055\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0883f96c-3b3b-4fe5-8fd2-ba6a62cd5faf\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiDebugTest20/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e629fbce-e762-45f6-b13c-457fbd608055\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiDebugTest20/providers/Microsoft.Network/publicIPAddresses/myPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiDebugTest20/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"IdnsDebuMicrosoftAzureNetworkingFrankTeamIdnsNameValidationTestRunningOnWestusStageRegionsWithSampleTemplate\",\r\n \"internalFqdn\": \"IdnsDebuMicrosoftAzureNetworkingFrankTeamIdnsNameValidationTestRunningOnWestusStageRegionsWithSampleTemplate.byw3xp0x4xjefljz0gyp3rxnbd.hx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-80-28-27\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiDebugTest20/providers/Microsoft.Compute/virtualMachines/MyWindowsVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"kaynic6\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample1/providers/Microsoft.Network/networkInterfaces/kaynic6\",\r\n \"etag\": \"W/\\\"0eabea2f-98c6-4c4b-bc33-88628700ac56\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eac9ef6b-8740-452b-9c6a-ce2ea02185ae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample1/providers/Microsoft.Network/networkInterfaces/kaynic6/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0eabea2f-98c6-4c4b-bc33-88628700ac56\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample1/providers/Microsoft.Network/publicIPAddresses/kaynic6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample1/providers/Microsoft.Network/virtualNetworks/kaynet6/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"kaynic6\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample2/providers/Microsoft.Network/networkInterfaces/kaynic6\",\r\n \"etag\": \"W/\\\"a78932df-f9ee-4d62-b004-13d7cf190aa9\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d8b2513d-de63-416c-9798-5d7ed897ce41\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample2/providers/Microsoft.Network/networkInterfaces/kaynic6/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a78932df-f9ee-4d62-b004-13d7cf190aa9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample2/providers/Microsoft.Network/publicIPAddresses/kaynic6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiIdnsSample2/providers/Microsoft.Network/virtualNetworks/kaynet6/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"myVMNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiResource3/providers/Microsoft.Network/networkInterfaces/myVMNic\",\r\n \"etag\": \"W/\\\"01729863-cb48-4507-9ad3-9fb8d764e61e\\\"\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4534b21f-2d84-4693-91d5-c6ad0ae0fc3a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiResource3/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"01729863-cb48-4507-9ad3-9fb8d764e61e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiResource3/providers/Microsoft.Network/publicIPAddresses/myPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiResource3/providers/Microsoft.Network/virtualNetworks/MyVNET/subnets/Subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"IdnsVm1\",\r\n \"internalFqdn\": \"IdnsVm1.a2ftlxfjn2iezihj3udx1wfn4d.hx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-80-74-07\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/YathiResource3/providers/Microsoft.Compute/virtualMachines/MyWindowsVM\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"NIC_287e227d-cc9e-4e60-a3ae-891b3509b0bc\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_287e227d-cc9e-4e60-a3ae-891b3509b0bc\",\r\n \"etag\": \"W/\\\"033d77b8-a233-4bb4-b635-8cf5b5344527\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fce459b-37cf-48f1-ba2c-8d41f74d7d56\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_287e227d-cc9e-4e60-a3ae-891b3509b0bc/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"033d77b8-a233-4bb4-b635-8cf5b5344527\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/publicIPAddresses/PublicIp_eb22596d-1bd3-43fd-8541-2a3039c49e23\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/virtualNetworks/VirtualNetwork_9c8b52fe-287c-4d77-942f-8a0b8eb090d5/subnets/FrontEndSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"000D3AA00F2B\",\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Compute/virtualMachines/VM_a27b15ad-456d-460c-91a5-3632cb95c51a\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"NIC_3906b543-b638-4817-9ce0-934e2f5059bc\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_3906b543-b638-4817-9ce0-934e2f5059bc\",\r\n \"etag\": \"W/\\\"ee562141-d7ff-40ed-a4b6-14410f61f760\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f857ffc8-d0a7-4099-a85c-dd9a4e73bde3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_3906b543-b638-4817-9ce0-934e2f5059bc/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ee562141-d7ff-40ed-a4b6-14410f61f760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/publicIPAddresses/PublicIp_bb6acd7f-55c5-4e23-9a21-7ee7d620861a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/virtualNetworks/VirtualNetwork_cbf6b6a9-1d5d-4eba-b288-b61d136645f2/subnets/FrontEndSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"000D3AA01DD4\",\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Compute/virtualMachines/VM_d16199d9-db93-4dfe-9838-8bb364510fb6\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"NIC_8db58f5c-d763-4798-93f4-59cfe689000f\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_8db58f5c-d763-4798-93f4-59cfe689000f\",\r\n \"etag\": \"W/\\\"181e3d4b-7135-4224-a79e-f29306cd5fc8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7f4b6dd-6c1d-497b-bd7a-13a8470dd5b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_8db58f5c-d763-4798-93f4-59cfe689000f/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"181e3d4b-7135-4224-a79e-f29306cd5fc8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/publicIPAddresses/PublicIp_c1471a71-5fa4-4512-9ca2-7a2fa3f0b5da\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/virtualNetworks/VirtualNetwork_e152590c-8653-4bf6-b365-c51c4a5aae74/subnets/FrontEndSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"000D3AA00E2A\",\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Compute/virtualMachines/VM_c2941f46-a1e3-4e76-b847-d2946d322e29\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"NIC_9b44dd80-9fe3-40aa-9dec-9e136cdfa09d\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_9b44dd80-9fe3-40aa-9dec-9e136cdfa09d\",\r\n \"etag\": \"W/\\\"ea615188-f50f-4663-85f2-b6bf3ccd633c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0baeda3-f687-4d2f-8b7e-74ab9219dc95\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/networkInterfaces/NIC_9b44dd80-9fe3-40aa-9dec-9e136cdfa09d/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ea615188-f50f-4663-85f2-b6bf3ccd633c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/publicIPAddresses/PublicIp_a9614524-72da-40cf-b790-5c4067fdd6a5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Network/virtualNetworks/VirtualNetwork_36d43bf3-fadc-4b3e-a1f4-7d9557c8d094/subnets/FrontEndSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"000D3AA007A6\",\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/BillingRunnerResourceGroup/providers/Microsoft.Compute/virtualMachines/VM_60f77bbb-7772-4f71-aa69-8466c9a6243f\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic\",\r\n \"etag\": \"W/\\\"2f145169-5f0f-4235-a5bf-9b8d094832be\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"051d3bc8-eaab-47eb-bcf6-eaf3fbf49577\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2f145169-5f0f-4235-a5bf-9b8d094832be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"4cb8e857-cb67-4911-b40f-0c6d5802b6ba\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6d75078b-6b17-46e0-8747-e0a834fbf719\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4cb8e857-cb67-4911-b40f-0c6d5802b6ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"etag\": \"W/\\\"cb3c9270-9380-4ea5-99ea-fc76ffd5a105\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d874a56f-b4f6-4cd2-a682-c697b19d070d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cb3c9270-9380-4ea5-99ea-fc76ffd5a105\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic3\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"etag\": \"W/\\\"44d10d37-deb2-430c-9403-52b07af7ac34\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d26fc6a-f30d-40bf-a489-29b4c5c48375\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nic3/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"44d10d37-deb2-430c-9403-52b07af7ac34\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nicnew\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nicnew\",\r\n \"etag\": \"W/\\\"91df0082-a8d5-4e32-81b5-617466193930\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e04c8236-4d5a-4c73-bb4c-27b3359a2925\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nicnew/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"91df0082-a8d5-4e32-81b5-617466193930\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nictestnew\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nictestnew\",\r\n \"etag\": \"W/\\\"7025ac62-e5e1-407b-9730-71cac22330a7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b720a3a6-ab5f-438f-b9fd-fe52b1a5f42f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/networkInterfaces/nictestnew/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7025ac62-e5e1-407b-9730-71cac22330a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/loadBalancers/lbName/backendAddressPools/bepool2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/lecture/providers/Microsoft.Network/loadBalancers/lbName/inboundNatRules/inboundNatRuleName\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkInterfaces/nic\",\r\n \"etag\": \"W/\\\"9d241538-178c-42cb-b111-8704d69d1f70\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"09d62838-3dac-4558-931c-acf2459004ea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkInterfaces/nic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9d241538-178c-42cb-b111-8704d69d1f70\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pTest/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pTest/providers/Microsoft.Network/loadBalancers/lbname1/backendAddressPools/bepool1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pTest/providers/Microsoft.Network/loadBalancers/lbname1/backendAddressPools/bepool2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pTest/providers/Microsoft.Network/loadBalancers/lbname1/inboundNatRules/inbound1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pTest/providers/Microsoft.Network/loadBalancers/lbname1/inboundNatRules/inbound2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"idns\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksclassicvm4-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvm4-Migrated/providers/Microsoft.Network/networkInterfaces/sriksclassicvm4-PrimaryNic\",\r\n \"etag\": \"W/\\\"1cb84c6f-2f22-4f02-a333-ef27311c703c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5cc7932-ce85-454f-a634-f69097f852a5\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksclassicvm4-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvm4-Migrated/providers/Microsoft.Network/networkInterfaces/sriksclassicvm4-PrimaryNic/ipConfigurations/sriksclassicvm4-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"1cb84c6f-2f22-4f02-a333-ef27311c703c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.10\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvnet4-Migrated/providers/Microsoft.Network/virtualNetworks/sriksclassicvnet4/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvm4-Migrated/providers/Microsoft.Network/loadBalancers/sriksclassicvm4-PublicLoadBalancer/inboundNatRules/PowerShell\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvm4-Migrated/providers/Microsoft.Network/loadBalancers/sriksclassicvm4-PublicLoadBalancer/inboundNatRules/Remote-Desktop\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksclassicvm4.i4.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-67-96\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksclassicvm4-Migrated/providers/Microsoft.Compute/virtualMachines/sriksclassicvm4\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksclassicvm1-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Network/networkInterfaces/sriksclassicvm1-PrimaryNic\",\r\n \"etag\": \"W/\\\"5ae58c82-847b-4b88-bb34-40e3728122f8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ffff3303-5080-4197-bef3-0db58fc37c35\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksclassicvm1-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Network/networkInterfaces/sriksclassicvm1-PrimaryNic/ipConfigurations/sriksclassicvm1-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"5ae58c82-847b-4b88-bb34-40e3728122f8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Network/virtualNetworks/SriksClassicWithReservedIp-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Network/loadBalancers/SriksClassicWithReservedIp-PublicLoadBalancer/inboundNatRules/PowerShell-sriksclassicvm1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Network/loadBalancers/SriksClassicWithReservedIp-PublicLoadBalancer/inboundNatRules/RemoteDesktop-sriksclassicvm1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eqozhuzk51qexptq55iac2gsda.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-F9-E4\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SriksClassicWithReservedIp-Migrated/providers/Microsoft.Compute/virtualMachines/sriksclassicvm1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"test44\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/networkInterfaces/test44\",\r\n \"etag\": \"W/\\\"938eeb39-6fde-4629-bfeb-5ee6fa25edf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5716c264-d9dd-48c7-a385-cc8a48985012\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/networkInterfaces/test44/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"938eeb39-6fde-4629-bfeb-5ee6fa25edf8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/publicIPAddresses/test\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/virtualNetworks/sriksidnsmigration/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"l43pxxmk5lkefeenl0gfiavmhe.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-A7-D5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Compute/virtualMachines/test\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksidns3-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration2-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidns3-PrimaryNic\",\r\n \"etag\": \"W/\\\"b530b182-5dc1-4d7d-9906-993b9a2bb2a7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d10abd9-58e9-42f0-aa6f-6c9a47b261b2\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksidns3-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration2-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidns3-PrimaryNic/ipConfigurations/sriksidns3-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"b530b182-5dc1-4d7d-9906-993b9a2bb2a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/virtualNetworks/sriksidnsmigration/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration2-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns3-PublicLoadBalancer/inboundNatRules/PowerShell-sriksidns3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration2-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns3-PublicLoadBalancer/inboundNatRules/Remote-Desktop-sriksidns3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksidnsmigration2.i4.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-76-21\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration2-Migrated/providers/Microsoft.Compute/virtualMachines/sriksidns3\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksidn2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidn2-PrimaryNic\",\r\n \"etag\": \"W/\\\"cff8e8f9-ab59-40bc-a3de-b7def74798b8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14236290-f1f8-4fc5-80d5-20013dbab75b\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksidn2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidn2-PrimaryNic/ipConfigurations/sriksidn2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"cff8e8f9-ab59-40bc-a3de-b7def74798b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/virtualNetworks/sriksidnsmigration/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns1-PublicLoadBalancer/inboundNatRules/PowerShell-sriksidn2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns1-PublicLoadBalancer/inboundNatRules/Remote-Desktop-sriksidn2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksidnsmigration.i5.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-41-6F\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Compute/virtualMachines/sriksidn2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksidns1-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidns1-PrimaryNic\",\r\n \"etag\": \"W/\\\"a8a155ae-90d9-4704-9b0e-e2d8068207a4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55b2b2d0-113d-4b00-9d69-8dc722a6afcc\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksidns1-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/networkInterfaces/sriksidns1-PrimaryNic/ipConfigurations/sriksidns1-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"a8a155ae-90d9-4704-9b0e-e2d8068207a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/virtualNetworks/sriksidnsmigration/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns1-PublicLoadBalancer/inboundNatRules/PowerShell-sriksidns1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Network/loadBalancers/sriksidns1-PublicLoadBalancer/inboundNatRules/Remote-Desktop-sriksidns1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sriksidnsmigration.i5.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-15-EF\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationb-Migrated/providers/Microsoft.Compute/virtualMachines/sriksidns1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksidns4nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationtest/providers/Microsoft.Network/networkInterfaces/sriksidns4nic\",\r\n \"etag\": \"W/\\\"a72cdee6-374b-4267-8015-88d35e647090\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98ca0cfb-d0d6-4054-a000-87c847af39f8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationtest/providers/Microsoft.Network/networkInterfaces/sriksidns4nic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a72cdee6-374b-4267-8015-88d35e647090\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationtest/providers/Microsoft.Network/publicIPAddresses/sriksidns4nic\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigration-Migrated/providers/Microsoft.Network/virtualNetworks/sriksidnsmigration/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"l43pxxmk5lkefeenl0gfiavmhe.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-7D-21\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksidnsmigrationtest/providers/Microsoft.Compute/virtualMachines/sriksidns4\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksubuntu1-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/networkInterfaces/sriksubuntu1-PrimaryNic\",\r\n \"etag\": \"W/\\\"5d85d73e-6bb2-4368-8fa7-4458dc1086b4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e82a6b3-839b-427a-8e53-5c197d31e1cd\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksubuntu1-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/networkInterfaces/sriksubuntu1-PrimaryNic/ipConfigurations/sriksubuntu1-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"5d85d73e-6bb2-4368-8fa7-4458dc1086b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/virtualNetworks/sriksrdfe57-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/loadBalancers/sriksubuntu1-PublicLoadBalancer/inboundNatRules/SSH-sriksubuntu1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mc1snn2oj3qubhqqqic1vduqse.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SRIKSRDFE57-MIGRATED/providers/Microsoft.Compute/virtualMachines/sriksubuntu1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"sriksubuntu2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/networkInterfaces/sriksubuntu2-PrimaryNic\",\r\n \"etag\": \"W/\\\"3615b580-80a9-448e-b2e8-706975f28a8b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b21781c1-8383-4a88-bcb0-84dc64821e5e\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"sriksubuntu2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/networkInterfaces/sriksubuntu2-PrimaryNic/ipConfigurations/sriksubuntu2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"3615b580-80a9-448e-b2e8-706975f28a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/virtualNetworks/sriksrdfe57-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/sriksrdfe57-Migrated/providers/Microsoft.Network/loadBalancers/sriksubuntu1-PublicLoadBalancer/inboundNatRules/SSH-sriksubuntu2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mc1snn2oj3qubhqqqic1vduqse.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/SRIKSRDFE57-MIGRATED/providers/Microsoft.Compute/virtualMachines/sriksubuntu2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"d9eb13ff-9e4e-47bc-9905-10f5b9e0ce98\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb2116c1-c62f-42c7-8f64-7279e4589453\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"d9eb13ff-9e4e-47bc-9905-10f5b9e0ce98\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Network/loadBalancers/loadBalancer1natpool/inboundNatRules/RDPPool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-23-74\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachines/vmss3_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"4bd0e8b9-cdc6-4271-bd99-5e5ef00f71cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f966e5e-cbe9-46d9-9ff9-af6039079298\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"4bd0e8b9-cdc6-4271-bd99-5e5ef00f71cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Network/loadBalancers/loadBalancer1natpool/inboundNatRules/RDPPool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-21-65\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug/providers/Microsoft.Compute/virtualMachines/vmss3_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"65b419c5-4acd-4f15-9de0-edf786ede2d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7593b9ab-0da8-497e-9e1b-78cb9728bf36\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"65b419c5-4acd-4f15-9de0-edf786ede2d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-27-49\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachines/vmss3_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"a9a166ae-d305-4656-a2f1-b9c242653ca9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20b5e137-de22-42d3-be46-759fe4dc3c68\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"a9a166ae-d305-4656-a2f1-b9c242653ca9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-54-C9\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmbug1/providers/Microsoft.Compute/virtualMachines/vmss3_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachineScaleSets/vmssnew/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"1f8b29ab-0e51-40f1-b194-f3bb1cee7073\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89076d7d-87f6-482d-8484-718c820531dc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachineScaleSets/vmssnew/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"1f8b29ab-0e51-40f1-b194-f3bb1cee7073\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/loadBalancers/loadBalancer1/backendAddressPools/loadBalancerBackEnd\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/loadBalancers/loadBalancer1/inboundNatRules/RDPPool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-E5-B3\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachines/vmssnew_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachineScaleSets/vmssnew/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"980ed867-a2c3-4e7f-907b-87496dd05eaa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7fec92f3-faed-4d7f-ad38-5f2a9febdb09\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachineScaleSets/vmssnew/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"980ed867-a2c3-4e7f-907b-87496dd05eaa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/loadBalancers/loadBalancer1/backendAddressPools/loadBalancerBackEnd\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Network/loadBalancers/loadBalancer1/inboundNatRules/RDPPool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-EA-53\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmssbug2/providers/Microsoft.Compute/virtualMachines/vmssnew_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"a68356f4-d0af-43d4-b716-ca461ee50a32\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00515db8-ed22-4a84-b8a1-e98f9d3058c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a68356f4-d0af-43d4-b716-ca461ee50a32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/publicIPAddresses/pub1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/clutest/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"etag\": \"W/\\\"0a2fed1e-d889-4eab-807b-705bb249ce7f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87913cb7-3508-47e4-a353-29dd2c171d6b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0a2fed1e-d889-4eab-807b-705bb249ce7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.3.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/clutest/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkSecurityGroups/nsg\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic3\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"etag\": \"W/\\\"5cff4c53-6ac8-4908-a606-03a43392f1a3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"12ae56ae-1400-4a95-819b-1b2811301faa\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic3/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5cff4c53-6ac8-4908-a606-03a43392f1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/clutest/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkSecurityGroups/nsg\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic4\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"etag\": \"W/\\\"de124797-18fc-4161-9f55-45f8bd8154bc\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4f88313c-2a8c-4198-8402-3d2a9493c93b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkInterfaces/nic4/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"de124797-18fc-4161-9f55-45f8bd8154bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.3.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/clutest/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/nat1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/networkSecurityGroups/nsg\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"4fb49e9f-5b20-4ca5-9791-8b808a4784db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f547f926-80b8-4391-927f-a2a9e50a87cc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"4fb49e9f-5b20-4ca5-9791-8b808a4784db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-D1-FF\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachines/vmss3_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"5928a3ee-d376-417e-846c-531d41ba81c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6aa3f11c-ad38-4ae8-b44d-977559c04688\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"5928a3ee-d376-417e-846c-531d41ba81c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-DA-0B\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstest/providers/Microsoft.Compute/virtualMachines/vmss3_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"8252e2ad-7548-41a1-b9de-080a46aaab94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38d76a46-6fbf-487a-8a0f-479831fe5c89\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"8252e2ad-7548-41a1-b9de-080a46aaab94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Network/loadBalancers/loadBalancerpoolBE/backendAddressPools/loadBalancerBackEnd\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-BE-E6\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachines/vmss3_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"ea04e69d-bfa0-4bb3-b753-a85ed6318701\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"66fa6d99-3e68-4d8f-b277-319f614367b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"ea04e69d-bfa0-4bb3-b753-a85ed6318701\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Network/loadBalancers/loadBalancerpoolBE/backendAddressPools/loadBalancerBackEnd\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-B0-63\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsstestpool/providers/Microsoft.Compute/virtualMachines/vmss3_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"a032c360-77bc-4a60-8a98-8075c040febe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bef29068-f0a7-4690-99fb-7155035eef4a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/0/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"a032c360-77bc-4a60-8a98-8075c040febe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Network/loadBalancers/loadBalancer1natpool/inboundNatRules/RDPPool.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-1A-6C\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachines/vmss3_0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1\",\r\n \"etag\": \"W/\\\"756ca37e-d41a-4184-9b73-5d1c02ab3435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"76cc29c5-432c-4b3d-b903-f0d814da0a04\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3/virtualMachines/1/networkInterfaces/nic1/ipConfigurations/ip1\",\r\n \"etag\": \"W/\\\"756ca37e-d41a-4184-9b73-5d1c02ab3435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Network/loadBalancers/loadBalancer1natpool/inboundNatRules/RDPPool.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-14-EE\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/vmsswintest/providers/Microsoft.Compute/virtualMachines/vmss3_1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"xepmigration49-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xepmigration49-Migrated/providers/Microsoft.Network/networkInterfaces/xepmigration49-PrimaryNic\",\r\n \"etag\": \"W/\\\"a341a56a-bcaa-47ef-a04f-b61746938dfb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00c661cd-27ef-47cc-b532-a83a99b8be39\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xepmigration49-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xepmigration49-Migrated/providers/Microsoft.Network/networkInterfaces/xepmigration49-PrimaryNic/ipConfigurations/xepmigration49-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"a341a56a-bcaa-47ef-a04f-b61746938dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration49-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration49/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xepmigration49-Migrated/providers/Microsoft.Network/loadBalancers/xepmigration49-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xepmigration49.i8.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrp-deployment2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp-deployment2-Migrated/providers/Microsoft.Network/networkInterfaces/xrp-deployment2-PrimaryNic\",\r\n \"etag\": \"W/\\\"2062940a-b810-4023-8a0a-2042634fb4c7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a22b0af-ce90-4ebd-9c90-c2f068f84854\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrp-deployment2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp-deployment2-Migrated/providers/Microsoft.Network/networkInterfaces/xrp-deployment2-PrimaryNic/ipConfigurations/xrp-deployment2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"2062940a-b810-4023-8a0a-2042634fb4c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp-2deployments-Migrated/providers/Microsoft.Network/virtualNetworks/xrp-2deployments/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp-deployment2-Migrated/providers/Microsoft.Network/loadBalancers/xrp-deployment2-PublicLoadBalancer/inboundNatRules/SSH-xrp-deployment2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xrp-deployment2.i2.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-7E-4E\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/XRP-DEPLOYMENT2-MIGRATED/providers/Microsoft.Compute/virtualMachines/xrp-deployment2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpdhf1test-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf1test9703-Migrated/providers/Microsoft.Network/networkInterfaces/xrpdhf1test-PrimaryNic\",\r\n \"etag\": \"W/\\\"fac655b5-38bd-4b5a-8133-334f6ad2d9e0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a60faaa6-de83-49ce-8a00-673dff4bd8a8\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpdhf1test-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf1test9703-Migrated/providers/Microsoft.Network/networkInterfaces/xrpdhf1test-PrimaryNic/ipConfigurations/xrpdhf1test-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"fac655b5-38bd-4b5a-8133-334f6ad2d9e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.1.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/Group_xrpdhf1test_xrpdhf1test-Migrated/providers/Microsoft.Network/virtualNetworks/Group-xrpdhf1test-xrpdhf1test/subnets/default\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf1test9703-Migrated/providers/Microsoft.Network/loadBalancers/xrpdhf1test9703-PublicLoadBalancer/inboundNatRules/SSH-xrpdhf1test\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xrpdhf1test9703.i3.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-AD-16\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpdhf1test9703-Migrated/providers/Microsoft.Compute/virtualMachines/xrpdhf1test\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigrate26-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrate26-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigrate26-PrimaryNic\",\r\n \"etag\": \"W/\\\"57a8d1ca-e568-4664-a5bb-ab75dc31fbaa\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b272feaf-520e-4e4e-8133-4cc9b6706cc7\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigrate26-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrate26-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigrate26-PrimaryNic/ipConfigurations/xrpmigrate26-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"57a8d1ca-e568-4664-a5bb-ab75dc31fbaa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrate26-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigrate26-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrate26-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigrate26-PublicLoadBalancer/inboundNatRules/SSH-xrpmigrate26\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ozjqaze0hggeln32qlg4bl5n0f.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-26-11\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrate26-Migrated/providers/Microsoft.Compute/virtualMachines/xrpmigrate26\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration28-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration28-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration28-PrimaryNic\",\r\n \"etag\": \"W/\\\"13be119f-778c-4cb8-9c73-605c673ed360\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4ec6569-49d1-487b-8a02-3b7b209dcd90\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration28-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration28-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration28-PrimaryNic/ipConfigurations/xrpmigration28-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"13be119f-778c-4cb8-9c73-605c673ed360\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration28-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration28-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration28-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration28-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zukpxhp5bsrutiu0bxrvkwdcza.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration29-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration29-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration29-PrimaryNic\",\r\n \"etag\": \"W/\\\"5cdf89fd-4267-45ea-9e04-34dfa2648926\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4f795a6-2d90-4f4d-ab75-c4a2449138c8\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration29-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration29-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration29-PrimaryNic/ipConfigurations/xrpmigration29-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"5cdf89fd-4267-45ea-9e04-34dfa2648926\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.20.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp-vnet-southeastasia/providers/Microsoft.Network/virtualNetworks/xrp-vnet-southeastasia/subnets/default\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration29-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration29-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jgslnwabws4ubh0bwmljhdi0xd.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration36-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration36-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration36-PrimaryNic\",\r\n \"etag\": \"W/\\\"e8853f6b-6b20-4165-ae30-38d3f195810a\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"380a8d05-d022-46a9-bafc-3876a9d6b5b7\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration36-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration36-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration36-PrimaryNic/ipConfigurations/xrpmigration36-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"e8853f6b-6b20-4165-ae30-38d3f195810a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration36-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration36-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration36-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration36-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"co0beeb4twvu1hfsh5k044gnxa.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration37-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration37-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration37-PrimaryNic\",\r\n \"etag\": \"W/\\\"ec02fd84-3f01-45e3-a909-330556a2d427\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"527a9a27-5f8a-4796-a5f9-a3fb2f1a5d23\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration37-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration37-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration37-PrimaryNic/ipConfigurations/xrpmigration37-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"ec02fd84-3f01-45e3-a909-330556a2d427\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration37-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration37-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration37-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration37-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uax0u5n0q2dejl2pjjev5osovd.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration43-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration43-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration43-PrimaryNic\",\r\n \"etag\": \"W/\\\"63d37869-284a-48e8-b60b-a51b0394753d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7c338eee-6683-4d7c-a800-881ffedc6e51\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration43-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration43-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration43-PrimaryNic/ipConfigurations/xrpmigration43-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"63d37869-284a-48e8-b60b-a51b0394753d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.0\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration43-vnet-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration43-vnet/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration43-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration43-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xrpmigration43.i8.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration47-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration472kgl771hpg0hllstm4sw16oghk11tmv96en3rzlf7yaooy0iypvi3p866-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration47-PrimaryNic\",\r\n \"etag\": \"W/\\\"9a131f43-205c-4d84-a994-4b9036d090b7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"353d9659-b9e4-4f53-b224-111b4355a9e1\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration47-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration472kgl771hpg0hllstm4sw16oghk11tmv96en3rzlf7yaooy0iypvi3p866-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration47-PrimaryNic/ipConfigurations/xrpmigration47-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"9a131f43-205c-4d84-a994-4b9036d090b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration47-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration47/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration472kgl771hpg0hllstm4sw16oghk11tmv96en3rzlf7yaooy0iypvi3p866-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration47-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xrpmigration47.i10.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration48-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration48-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration48-PrimaryNic\",\r\n \"etag\": \"W/\\\"11cd79cb-c38c-4d3c-b375-657443882c04\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8c6d7759-fcb5-4e43-ab19-6deb7ed85388\",\r\n \"migrationPhase\": \"Commit\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration48-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration48-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration48-PrimaryNic/ipConfigurations/xrpmigration48-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"11cd79cb-c38c-4d3c-b375-657443882c04\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration48-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigration48-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigration48-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration48-PublicLoadBalancer/inboundNatRules/SSH\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gwg1ft32lcuuhehgublrlg5pwh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigration50-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration50-PrimaryNic\",\r\n \"etag\": \"W/\\\"89bb6628-8e96-4abc-8ea7-1236ab4df7fe\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c24e0d51-8dbb-4a6b-937e-b91ebba0ab99\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigration50-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigration50-PrimaryNic/ipConfigurations/xrpmigration50-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"89bb6628-8e96-4abc-8ea7-1236ab4df7fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigrationcs-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration50-PublicLoadBalancer/inboundNatRules/PowerShell-xrpmigration50\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration50-PublicLoadBalancer/inboundNatRules/Remote-Desktop-xrpmigration50\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationcs-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigration50-PublicLoadBalancer/inboundNatRules/SSH-xrpmigration50\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dteogqztg4we1ey51wx5ih4def.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmigrationpip-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationpip-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigrationpip-PrimaryNic\",\r\n \"etag\": \"W/\\\"fb51a0a9-e071-4d52-a14e-39468a58bc13\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f29e354-85a9-4d9d-bae7-04bf8aaba286\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmigrationpip-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationpip-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmigrationpip-PrimaryNic/ipConfigurations/xrpmigrationpip-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"fb51a0a9-e071-4d52-a14e-39468a58bc13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationpip-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmigrationpip-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmigrationpip-Migrated/providers/Microsoft.Network/loadBalancers/xrpmigrationpip-PublicLoadBalancer/inboundNatRules/SSH-xrpmigrationpip\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"phne4k0a54qejntfxqlc5w1unf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmultinic7-eth1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmultinic7-eth1\",\r\n \"etag\": \"W/\\\"bda866a5-6f99-4563-b707-bc4dcc06e71b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"OriginalClassicStackName\": \"eth1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45fd95f1-9d19-4fee-bd77-b81130bdbcbb\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmultinic7-eth1-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmultinic7-eth1/ipConfigurations/xrpmultinic7-eth1-IpConfig\",\r\n \"etag\": \"W/\\\"bda866a5-6f99-4563-b707-bc4dcc06e71b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmultinic7/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpmultinic7-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmultinic7-PrimaryNic\",\r\n \"etag\": \"W/\\\"cdaf6ba3-b2cd-4057-87db-c563051af018\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0caeb848-b645-46b5-801b-747fe11f00ca\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpmultinic7-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/networkInterfaces/xrpmultinic7-PrimaryNic/ipConfigurations/xrpmultinic7-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"cdaf6ba3-b2cd-4057-87db-c563051af018\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7-Migrated/providers/Microsoft.Network/virtualNetworks/xrpmultinic7/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/loadBalancers/xrpmultinic7-PublicLoadBalancer/inboundNatRules/PowerShell-xrpmultinic7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpmultinic7fvgqt82mip429juok9j2xxcesvre21g5knyiodtw1v856wmi15xanovrsc8-Migrated/providers/Microsoft.Network/loadBalancers/xrpmultinic7-PublicLoadBalancer/inboundNatRules/RemoteDesktop-xrpmultinic7\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpnonvnet2vm-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnonvnet2vm-PrimaryNic\",\r\n \"etag\": \"W/\\\"d1b828da-d36b-4d81-a759-02f5dc586264\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b9d6f81-ba03-4f4e-91da-8fdeb7c86cbd\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpnonvnet2vm-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnonvnet2vm-PrimaryNic/ipConfigurations/xrpnonvnet2vm-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"d1b828da-d36b-4d81-a759-02f5dc586264\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/virtualNetworks/xrpnonvnet2vm-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/loadBalancers/xrpnonvnet2vm-PublicLoadBalancer/inboundNatRules/SSH-xrpnonvnet2vm\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpnonvnet2vm2-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnonvnet2vm2-PrimaryNic\",\r\n \"etag\": \"W/\\\"5e06dd40-1842-413b-bd11-a7a0bee93bc3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f93e1ede-0a8a-4ed0-b6bc-3a2259d0397e\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpnonvnet2vm2-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnonvnet2vm2-PrimaryNic/ipConfigurations/xrpnonvnet2vm2-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"5e06dd40-1842-413b-bd11-a7a0bee93bc3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/virtualNetworks/xrpnonvnet2vm-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Network/loadBalancers/xrpnonvnet2vm-PublicLoadBalancer/inboundNatRules/SSH-xrpnonvnet2vm2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnonvnet2vm-Migrated/providers/Microsoft.Compute/virtualMachines/xrpnonvnet2vm2\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpnsdtest1-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnsdtest1-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnsdtest1-PrimaryNic\",\r\n \"etag\": \"W/\\\"966585f3-60f9-495e-8410-3256d31eaf5c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f2b99d6-09f0-49e3-ab21-4d956e9ed6dc\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpnsdtest1-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnsdtest1-Migrated/providers/Microsoft.Network/networkInterfaces/xrpnsdtest1-PrimaryNic/ipConfigurations/xrpnsdtest1-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"966585f3-60f9-495e-8410-3256d31eaf5c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnsdtest-Migrated/providers/Microsoft.Network/virtualNetworks/xrpnsdtest/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnsdtest1-Migrated/providers/Microsoft.Network/loadBalancers/xrpnsdtest1-PublicLoadBalancer/inboundNatRules/SSH-xrpnsdtest1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xrpnsdtest1.i9.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-A2-71\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpnsdtest1-Migrated/providers/Microsoft.Compute/virtualMachines/xrpnsdtest1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpstopdealloc-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpstopdealloc-Migrated/providers/Microsoft.Network/networkInterfaces/xrpstopdealloc-PrimaryNic\",\r\n \"etag\": \"W/\\\"9cab3762-6c4d-4d49-aa31-973bf9debfec\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e00f76d4-ac97-4d5a-ba82-eb8efb3e03f0\",\r\n \"migrationPhase\": \"Prepare\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpstopdealloc-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpstopdealloc-Migrated/providers/Microsoft.Network/networkInterfaces/xrpstopdealloc-PrimaryNic/ipConfigurations/xrpstopdealloc-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"9cab3762-6c4d-4d49-aa31-973bf9debfec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpstopdealloc-Migrated/providers/Microsoft.Network/virtualNetworks/xrpstopdealloc-VirtualNetwork/subnets/Subnet-1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpstopdealloc-Migrated/providers/Microsoft.Network/loadBalancers/xrpstopdealloc-PublicLoadBalancer/inboundNatRules/SSH-xrpstopdealloc\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"swzdkoeiq0nelomxvhhauhtvle.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"xrpsubnetspace-PrimaryNic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpsubnetspace-Migrated/providers/Microsoft.Network/networkInterfaces/xrpsubnetspace-PrimaryNic\",\r\n \"etag\": \"W/\\\"a5cb9be4-b7a2-4556-9a42-f5ad671e69fa\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d327a3d4-9e6e-4c02-ad58-644c41b3ef00\",\r\n \"migrationPhase\": \"Committed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"xrpsubnetspace-PrimaryNic-IpConfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpsubnetspace-Migrated/providers/Microsoft.Network/networkInterfaces/xrpsubnetspace-PrimaryNic/ipConfigurations/xrpsubnetspace-PrimaryNic-IpConfig\",\r\n \"etag\": \"W/\\\"a5cb9be4-b7a2-4556-9a42-f5ad671e69fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrp_subnet_space_test-Migrated/providers/Microsoft.Network/virtualNetworks/xrp-subnet-space-test/subnets/subnet-space\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xrpsubnetspace-Migrated/providers/Microsoft.Network/loadBalancers/xrpsubnetspace-PublicLoadBalancer/inboundNatRules/SSH-xrpsubnetspace\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"mynic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkInterfaces/mynic\",\r\n \"etag\": \"W/\\\"3904e669-ec6e-4cd5-ae3e-c642d7f0ed6f\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"735b3ce9-10ac-462b-9346-b72e20eafcf6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkInterfaces/mynic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3904e669-ec6e-4cd5-ae3e-c642d7f0ed6f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/virtualNetworks/myTestVirtualNetwork/subnets/frontendSubnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"networkInterface\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/IdnsCrpTestResourceGroup36/providers/Microsoft.Network/networkInterfaces/networkInterface\",\r\n \"etag\": \"W/\\\"e8ea59f2-71ed-42e1-9307-68d1cbc83b24\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c0025c6-832a-4eb6-844f-69d3b73dec3a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/IdnsCrpTestResourceGroup36/providers/Microsoft.Network/networkInterfaces/networkInterface/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"e8ea59f2-71ed-42e1-9307-68d1cbc83b24\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.1.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/IdnsCrpTestResourceGroup36/providers/Microsoft.Network/publicIPAddresses/vmPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/IdnsCrpTestResourceGroup36/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"nrpIdns46\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/idnstest/providers/Microsoft.Network/networkInterfaces/nic\",\r\n \"etag\": \"W/\\\"97203cce-3ecd-49ec-aa84-f0ebe7ec6d92\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93cd9021-6a63-4d63-9ca2-df500b36dfae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/idnstest/providers/Microsoft.Network/networkInterfaces/nic/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"97203cce-3ecd-49ec-aa84-f0ebe7ec6d92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/idnstest/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\": \"idns\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"foo4\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk1040/providers/Microsoft.Network/networkInterfaces/foo4\",\r\n \"etag\": \"W/\\\"ec786333-60cb-4b2e-afcc-e2f932c95a61\\\"\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"Name\": \"Value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84ba650d-bf9c-481c-863a-e3147fe89251\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IPConfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk1040/providers/Microsoft.Network/networkInterfaces/foo4/ipConfigurations/IPConfig1\",\r\n \"etag\": \"W/\\\"ec786333-60cb-4b2e-afcc-e2f932c95a61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.20\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/onesdk1040/providers/Microsoft.Network/virtualNetworks/onesdk1057/subnets/onesdk5659\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vrdqeidt2bzurdwlhhdkbu03de.gx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -940,7 +1090,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:56 GMT" + "Tue, 01 Aug 2017 10:28:48 GMT" ], "Pragma": [ "no-cache" @@ -948,47 +1098,101 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-original-request-ids": [ - "3c26fd00-995f-41b4-b528-b5dc3d330005", - "2e3759fb-25df-4c09-9110-7cd0e75049f1", - "ad61c49d-1f13-4884-8021-b5463348a23c", - "1ada8952-19d3-42fa-ba11-e335981037a2", - "be3cdac1-564a-457e-a9a5-4e1776c74b2a", - "edb8e69f-e3bd-4cd3-bd03-6494067ad3bc", - "abcf9eba-cf21-48db-bbd2-0dbb47b3fb21" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14981" ], "x-ms-request-id": [ - "53ab8c16-f38e-418d-b22b-43e32e39b087" + "10501089-d8fa-47dc-84d1-b0b7029fbab4" ], "x-ms-correlation-request-id": [ - "53ab8c16-f38e-418d-b22b-43e32e39b087" + "10501089-d8fa-47dc-84d1-b0b7029fbab4" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121257Z:53ab8c16-f38e-418d-b22b-43e32e39b087" + "WESTEUROPE:20170801T102849Z:10501089-d8fa-47dc-84d1-b0b7029fbab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/networkInterfaces?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "728628f1-8734-405f-b58b-e38ab5bafa73" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet6941\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc49f2ff-e92b-4e09-989d-e745e22854a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6753\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941/ipConfigurations/azsmnet6753\",\r\n \"etag\": \"W/\\\"41863c5e-64c1-4e85-ac7b-a4a4e9f0f1a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616/subnets/azsmnet6224\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fowz0yaxxxfutpnbtzgibw2l2b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 10:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "aefa79cc-6af0-4300-8e13-1182824906e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "cf94d0c4-7d39-4773-b41e-074ff0f6b39d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T102817Z:cf94d0c4-7d39-4773-b41e-074ff0f6b39d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/networkInterfaces/azsmnet6941?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5NDE/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1c2c0ea-6216-4042-99ab-609e54bdb4b0" + "b8868814-ba62-4263-92d3-7e958fb3ebe3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -1003,13 +1207,13 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:12:57 GMT" + "Tue, 01 Aug 2017 10:28:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/ef9248c5-054b-46e0-9ac0-bfc137bae272?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -1019,34 +1223,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "aa4769b3-0555-4b4d-bf93-ec75ac59336f" + "ef9248c5-054b-46e0-9ac0-bfc137bae272" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/ef9248c5-054b-46e0-9ac0-bfc137bae272?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "6aedb0f4-7299-4f74-b4ac-856290d7102c" + "73e072ab-0cad-4584-bf4a-019feec789b3" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121257Z:6aedb0f4-7299-4f74-b4ac-856290d7102c" + "WESTEUROPE:20170801T102818Z:73e072ab-0cad-4584-bf4a-019feec789b3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/ef9248c5-054b-46e0-9ac0-bfc137bae272?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWY5MjQ4YzUtMDU0Yi00NmUwLTlhYzAtYmZjMTM3YmFlMjcyP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1061,7 +1266,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:13:27 GMT" + "Tue, 01 Aug 2017 10:28:48 GMT" ], "Pragma": [ "no-cache" @@ -1077,37 +1282,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97e41d7c-7bde-409d-8381-0362fd0ad661" + "3e9b9487-797b-458a-a225-8416d346e7a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14982" ], "x-ms-correlation-request-id": [ - "c2520d6c-cdd0-4020-894d-af8bbd6d7d7d" + "8d9c0883-a2a6-4ba6-bddc-54ee1969c981" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121328Z:c2520d6c-cdd0-4020-894d-af8bbd6d7d7d" + "WESTEUROPE:20170801T102849Z:8d9c0883-a2a6-4ba6-bddc-54ee1969c981" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/publicIPAddresses/azsmnet9595?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk1OTU/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc7b78fd-8ac2-45ef-ab82-e5663dc2b967" + "f8df25d9-e865-4ba2-ad0c-caf25eade973" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -1122,13 +1328,13 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:13:27 GMT" + "Tue, 01 Aug 2017 10:28:49 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/2f08ea83-e813-462b-88c1-88d95995a5f0?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -1138,34 +1344,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" + "2f08ea83-e813-462b-88c1-88d95995a5f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2f08ea83-e813-462b-88c1-88d95995a5f0?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "b10dece2-4deb-4e80-a327-e92d5c1a1734" + "fe030ee9-fcb9-47eb-9e1b-78a69e17f76c" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121328Z:b10dece2-4deb-4e80-a327-e92d5c1a1734" + "WESTEUROPE:20170801T102850Z:fe030ee9-fcb9-47eb-9e1b-78a69e17f76c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/2f08ea83-e813-462b-88c1-88d95995a5f0?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYwOGVhODMtZTgxMy00NjJiLTg4YzEtODhkOTU5OTVhNWYwP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1180,7 +1387,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:13:57 GMT" + "Tue, 01 Aug 2017 10:29:21 GMT" ], "Pragma": [ "no-cache" @@ -1196,37 +1403,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ac66165a-80dc-4de5-9064-6ef59275df6d" + "e7c21ecd-e9cf-40bd-bc76-1f476cb39651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14980" ], "x-ms-correlation-request-id": [ - "b83042b0-6bf3-4af2-b5e3-063df1e26829" + "31722cbe-77ce-44e0-b9cc-f0f6a6886269" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121358Z:b83042b0-6bf3-4af2-b5e3-063df1e26829" + "WESTEUROPE:20170801T102921Z:31722cbe-77ce-44e0-b9cc-f0f6a6886269" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg1843/providers/Microsoft.Network/virtualNetworks/azsmnet1616?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNjE2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "893bf95a-c9f5-42fa-a796-8c30dc114a27" + "4746f893-1580-42f3-9f14-ad6f8765355c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "", @@ -1241,13 +1449,13 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:13:58 GMT" + "Tue, 01 Aug 2017 10:29:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/03a7d087-8542-40ae-b494-93af01f49a57?api-version=2017-06-01" ], "Retry-After": [ "10" @@ -1257,34 +1465,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "26a085d4-53bb-4078-b6ae-c11c9ff3337d" + "03a7d087-8542-40ae-b494-93af01f49a57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/03a7d087-8542-40ae-b494-93af01f49a57?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "ae21b0a2-2090-4d0a-a4f1-4625359c93f4" + "11e42caf-9d15-4fea-8295-57dc88193580" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121358Z:ae21b0a2-2090-4d0a-a4f1-4625359c93f4" + "WESTEUROPE:20170801T102922Z:11e42caf-9d15-4fea-8295-57dc88193580" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/03a7d087-8542-40ae-b494-93af01f49a57?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDNhN2QwODctODU0Mi00MGFlLWI0OTQtOTNhZjAxZjQ5YTU3P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/4.6.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/12.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1299,7 +1508,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Jun 2016 12:14:28 GMT" + "Tue, 01 Aug 2017 10:29:52 GMT" ], "Pragma": [ "no-cache" @@ -1315,19 +1524,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f26bb584-3ec3-42c3-bc63-bcb9107f856f" + "0d93cca4-24b5-439f-ac7c-87c988cb18ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14979" ], "x-ms-correlation-request-id": [ - "b7fece34-d7bf-4ab6-ab63-e78367058f1c" + "7ec38f68-68f1-4cd6-a0b6-e49187e8858a" ], "x-ms-routing-request-id": [ - "WESTUS:20160629T121429Z:b7fece34-d7bf-4ab6-ab63-e78367058f1c" + "WESTEUROPE:20170801T102952Z:7ec38f68-68f1-4cd6-a0b6-e49187e8858a" ] }, "StatusCode": 200 @@ -1335,16 +1544,16 @@ ], "Names": { "NetworkInterfaceApiTest": [ - "csmrg2944", - "azsmnet341", - "azsmnet1938", - "azsmnet2507", - "azsmnet4813", - "azsmnet8787", - "azsmnet6862" + "csmrg1843", + "azsmnet9595", + "azsmnet1544", + "azsmnet1616", + "azsmnet6224", + "azsmnet6941", + "azsmnet6753" ] }, "Variables": { - "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" + "SubscriptionId": "947d47b4-7883-4bb9-9d85-c5e8e2f572ce" } -} +} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index 042ed4907ea4..51149d6c3099 100644 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -1,62 +1,65 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network?api-version=2015-11-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1647b2ed-c76d-4257-891e-e757a65019db" + "fb5103b2-b7c2-427d-ae01-1cba07df77db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\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 \"2017-06-01\",\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 \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"routeTables\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/privateAccessServices\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5908" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:27:20 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14995" ], "x-ms-request-id": [ - "9855bba7-2bd2-4fb5-8644-0090bcb2e76e" + "e7800229-e507-45eb-ba06-39a397afb5aa" ], "x-ms-correlation-request-id": [ - "9855bba7-2bd2-4fb5-8644-0090bcb2e76e" + "e7800229-e507-45eb-ba06-39a397afb5aa" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195521Z:9855bba7-2bd2-4fb5-8644-0090bcb2e76e" + "WESTEUROPE:20170801T122720Z:e7800229-e507-45eb-ba06-39a397afb5aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/csmrg7220?api-version=2015-11-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourcegroups/csmrg6386?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM4Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -65,16 +68,17 @@ "29" ], "x-ms-client-request-id": [ - "67e50a62-8105-4618-b1d9-f9bcc97337a3" + "05d8440a-6d1a-4e7b-9593-adf42b787cc6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220\",\r\n \"name\": \"csmrg7220\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386\",\r\n \"name\": \"csmrg6386\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -85,58 +89,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:27:22 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "72ca3069-8b78-4b8c-95af-1ca0e63d19ca" + "dc96b23b-2ee9-40fd-8b01-adc4ff625997" ], "x-ms-correlation-request-id": [ - "72ca3069-8b78-4b8c-95af-1ca0e63d19ca" + "dc96b23b-2ee9-40fd-8b01-adc4ff625997" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195522Z:72ca3069-8b78-4b8c-95af-1ca0e63d19ca" + "WESTEUROPE:20170801T122723Z:dc96b23b-2ee9-40fd-8b01-adc4ff625997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet783\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "508" + "507" ], "x-ms-client-request-id": [ - "528661b5-597f-4ecd-9887-4cb78be250c9" + "c5655c88-fd47-4b51-8e9b-77cbadafeb9f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"cb6a9485-991c-416b-8500-54081da540fc\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"65f14d40-ba5d-42f6-b9f8-c2fb867efa13\\\"\",\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": [ - "5792" + "6910" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,630 +150,798 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:27:27 GMT" + ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "a57f505b-b51f-4237-9476-5550060e76c9" + "07c529d2-f85c-4aa7-9d1c-994f6c970035" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/07c529d2-f85c-4aa7-9d1c-994f6c970035?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "808714a0-5722-4a8d-ab30-23bfdef88bab" + "788b8e50-52ec-4145-b969-7c4ed9293d43" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195523Z:808714a0-5722-4a8d-ab30-23bfdef88bab" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:23 GMT" + "WESTEUROPE:20170801T122727Z:788b8e50-52ec-4145-b969-7c4ed9293d43" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet783\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1469\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "941" + "940" ], "x-ms-client-request-id": [ - "de32957f-8fe6-47ec-9d1c-4b3c3486b324" + "999babcb-88f0-4a72-a96b-63a9bdcaeb2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet5872\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d4002c9c-4b5c-482f-bf09-a63a6a798bc6\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\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\": \"azsmnet1469\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet1469\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d33fb5e0-fda6-4beb-bc14-bbc4be8b2827\\\"\",\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": [ - "6515" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:27:59 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "6d429732-cf6e-4850-b7a9-9540b533611f" + "a1c67e39-0c3c-4a4a-976a-321f13994a63" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/a1c67e39-0c3c-4a4a-976a-321f13994a63?api-version=2017-06-01" ], "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" + "1198" ], "x-ms-correlation-request-id": [ - "dee0b297-508d-419c-a6c4-fc407c68cdb7" + "1eab3b74-3c93-412a-b44c-f3b62d2ce88f" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195535Z:dee0b297-508d-419c-a6c4-fc407c68cdb7" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:34 GMT" + "WESTEUROPE:20170801T122759Z:1eab3b74-3c93-412a-b44c-f3b62d2ce88f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/07c529d2-f85c-4aa7-9d1c-994f6c970035?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDdjNTI5ZDItZjg1Yy00YWE3LTlkMWMtOTk0ZjZjOTcwMDM1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d5f5f9bd-0832-4c97-acf0-fff38ec50bac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:27:57 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5c67699e-6f86-4d74-8a6a-03d911efc16d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14992" ], "x-ms-correlation-request-id": [ - "5880e310-5973-4ecd-b3b9-4fa4880f83d2" + "e54665f3-7f21-487b-9f73-443722902b07" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195533Z:5880e310-5973-4ecd-b3b9-4fa4880f83d2" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:33 GMT" + "WESTEUROPE:20170801T122757Z:e54665f3-7f21-487b-9f73-443722902b07" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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": [ - "5800" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "dd4e78f1-01aa-42da-ba21-4116bd68328d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:27:57 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\"" + "W/\"17c2a98b-01d3-4054-9795-844118858b14\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6bfc9d5f-f0db-4d21-a6eb-7284ce51170e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-correlation-request-id": [ - "39b1f9c7-6486-4ed6-a316-7ff5398a4327" + "e37adf4d-94ad-4a25-b414-f7d7870e46a2" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195534Z:39b1f9c7-6486-4ed6-a316-7ff5398a4327" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:33 GMT" + "WESTEUROPE:20170801T122758Z:e37adf4d-94ad-4a25-b414-f7d7870e46a2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1566ba5e-6049-425c-aea5-5e508477e3b7" + "890f434a-0d2e-4809-bdb5-ca872beab69a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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": [ - "5800" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "b867f738-fe99-4385-a98d-26f783052705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:27:58 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\"" + "W/\"17c2a98b-01d3-4054-9795-844118858b14\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0608da6f-741c-4f87-8b3b-9a4aef1c1e8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-correlation-request-id": [ - "52ec56aa-21ca-4102-8a94-488ac282640d" + "45eb4c8a-669c-4b15-973e-e12c5bbb7617" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195534Z:52ec56aa-21ca-4102-8a94-488ac282640d" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:33 GMT" + "WESTEUROPE:20170801T122758Z:45eb4c8a-669c-4b15-973e-e12c5bbb7617" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet5872\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\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\": \"azsmnet1469\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet1469\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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": [ - "6524" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c6555a1e-5a16-40a8-96a5-5a03db424edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:28:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\"" + "W/\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "33afee42-51c4-4c8e-977a-f96f86ddc4ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14986" ], "x-ms-correlation-request-id": [ - "600de881-7de7-4e8e-99d2-0be46ce7071c" + "7a3a3d52-8447-48f3-8c92-211dc56d6c4d" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195546Z:600de881-7de7-4e8e-99d2-0be46ce7071c" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:45 GMT" + "WESTEUROPE:20170801T122830Z:7a3a3d52-8447-48f3-8c92-211dc56d6c4d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e5c69d1-8403-4c58-9aef-3158275eced4" + "5b462dd8-b7c4-430a-b6cb-2beeb142a683" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet5872\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\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\": \"azsmnet1469\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet1469\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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": [ - "6524" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "ae720d55-26d9-4076-9574-ef03b2b5e91e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:28:30 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "ETag": [ - "W/\"2ca58fcf-5f80-4a2e-82bc-d2e6ace8305f\"" + "W/\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9aa530a5-887b-44a7-9c73-82c003a721e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-correlation-request-id": [ - "dab4cea8-cc3b-4970-8086-55b11f0d4c47" + "edb1a0cb-9d87-40ad-bc8c-595b3530822f" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195546Z:dab4cea8-cc3b-4970-8086-55b11f0d4c47" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:45 GMT" + "WESTEUROPE:20170801T122830Z:edb1a0cb-9d87-40ad-bc8c-595b3530822f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f60bc66a-5a44-49c7-aa6a-a6525572869c" + "f76dcfdd-5100-44ad-a1e7-f099e958c9ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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 }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "6361" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "1fd7c390-aa9f-4d80-824f-acd303de5cc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:27:58 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df658833-7349-4196-a871-ae44bc1f479b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-correlation-request-id": [ - "ab601e82-9c58-407f-a931-c559ae4931e0" + "d9a88cf6-afac-4c46-84c2-ce934aaa8945" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195534Z:ab601e82-9c58-407f-a931-c559ae4931e0" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:33 GMT" + "WESTEUROPE:20170801T122758Z:d9a88cf6-afac-4c46-84c2-ce934aaa8945" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f198ee6a-49a6-469c-aa0f-3aa067ab3ab4" + "bd1a3776-b1bf-4ac2-ba53-672bc22994bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "19" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "04d68bd5-7323-406d-9b0c-75fbeaaa8800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:29:01 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Vary": [ + "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14981" + ], + "x-ms-request-id": [ + "a9c4428a-dba4-49aa-8ca1-21a07604a755" ], "x-ms-correlation-request-id": [ - "909c1225-2f1b-4be2-aefa-b19c22b91f2b" + "a9c4428a-dba4-49aa-8ca1-21a07604a755" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195556Z:909c1225-2f1b-4be2-aefa-b19c22b91f2b" + "WESTEUROPE:20170801T122902Z:a9c4428a-dba4-49aa-8ca1-21a07604a755" ], - "Date": [ - "Fri, 13 Nov 2015 19:55:56 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9e91ea4-55a9-4e0f-90bd-762c81e8fce4" + "744e9b2e-6498-44f1-a3e0-1d03ddf57223" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet4138\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c63fc2f9-9b29-4c64-a59e-d24ee147b575\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg1718/providers/Microsoft.Network/networkSecurityGroups/azsmnet4138/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d8384df4-0a9c-429d-b39d-5f113a6836fc\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1014\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4b6d751-e1aa-4987-bace-7d49be976ddd\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/securityRules/azsmnet9774\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"87fa7e60-4d98-43c4-b956-2ac78f0259ae\\\"\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2\",\r\n \"etag\": \"W/\\\"f55bc1f5-2ec1-4854-93d5-d2142b598543\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"69f8cce6-5c5a-4396-9043-c5260d53f582\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg2/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"1636d5d8-48ea-4791-be28-d99e4b3cd974\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ebc47a7a-45da-4f0b-8285-b46930df4548\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepaktest3/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"DefaultNSG\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9e5113e-941b-4221-92c5-8b2a8f98cc74\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"rdp_rule\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/securityRules/rdp_rule\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow RDP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"Internet\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/networkSecurityGroups/DefaultNSG/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d218ba88-25e0-4cd3-bb0f-fc0e3cf53874\\\"\",\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 }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/FESubnet\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/ApplianceSubnet\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/RouteTableTestTemplate/providers/Microsoft.Network/virtualNetworks/VNet_Route_Sample/subnets/BESubnet\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"shienNsgTest\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest\",\r\n \"etag\": \"W/\\\"f37296f6-7f09-4115-8913-ee2ebd7e2a46\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9d8293ba-2049-4b63-a0a7-f2fedab8e576\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"WEB\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/securityRules/WEB\",\r\n \"etag\": \"W/\\\"f37296f6-7f09-4115-8913-ee2ebd7e2a46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNsgTest/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkInterfaces/shientest_NIC\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg\",\r\n \"etag\": \"W/\\\"f3d4cfe1-bb98-4d27-81d9-725bbab0835a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d467f0e5-04ec-483a-81d7-4660fb514056\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"firstrule\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/securityRules/firstrule\",\r\n \"etag\": \"W/\\\"f3d4cfe1-bb98-4d27-81d9-725bbab0835a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"myfirstrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"80\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"10.0.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/networkInterfaces/mynic2\"\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/testxplat/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/subnet2\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"19e70b59-0ecf-4668-91fb-e68cc79323b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15de9045-195c-4738-aee9-8a53b961a68c\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westustestrg/providers/Microsoft.Network/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"1c20eda1-1baf-421d-bf03-3899f1f77dff\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdf7b967-3a72-4834-827f-1d086941e2b1\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/rule1\",\r\n \"etag\": \"W/\\\"1c20eda1-1baf-421d-bf03-3899f1f77dff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"asdasd\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AZURELOADBALANCER\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1243,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/xplattest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"demonsg\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg\",\r\n \"etag\": \"W/\\\"8c1b0edf-8634-426a-abfa-a8f59192f669\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bdd3fc85-0fd9-4d36-ad4e-b6688ccf14a5\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demorg/providers/Microsoft.Network/networkSecurityGroups/demonsg/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"shienNSG\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG\",\r\n \"etag\": \"W/\\\"f0346d21-3d62-4727-b143-49caa8e83387\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b74f32a4-d34a-4cdd-a851-6d34ab1a88b0\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"shienRule\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/securityRules/shienRule\",\r\n \"etag\": \"W/\\\"f0346d21-3d62-4727-b143-49caa8e83387\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"23-45\",\r\n \"destinationPortRange\": \"46-56\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 123,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"shienRule2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/securityRules/shienRule2\",\r\n \"etag\": \"W/\\\"f0346d21-3d62-4727-b143-49caa8e83387\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"23-45\",\r\n \"destinationPortRange\": \"46-56\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 124,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/networkSecurityGroups/shienNSG/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/shienRG/providers/Microsoft.Network/virtualNetworks/shienVN/subnets/subnetTest\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"4c66bae1-a349-4d43-a0a7-b1f533f2017d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d904a2b-4116-4eea-aca8-43245962c66e\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"sriks-new-rule\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/sriks-new-rule\",\r\n \"etag\": \"W/\\\"4c66bae1-a349-4d43-a0a7-b1f533f2017d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"8080\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/westeuropetestrg/providers/Microsoft.Network/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"6629540b-aabe-4da6-ab77-eaff0a48456a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e822cb39-fc83-47a0-87a5-f72bad7d9e40\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/deepakniclbtest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"a99fb1d3-2f61-4b6d-b39c-7e36afb05a7f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"485a8768-d430-4476-be68-4645f18941f2\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"sec1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/sec1\",\r\n \"etag\": \"W/\\\"a99fb1d3-2f61-4b6d-b39c-7e36afb05a7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Adsa\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"sec2\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/sec2\",\r\n \"etag\": \"W/\\\"a99fb1d3-2f61-4b6d-b39c-7e36afb05a7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Adsa\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 102,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/ptest/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"nsg1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n \"etag\": \"W/\\\"fbbec594-ba9a-4180-8cd8-58b7f8555d32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a98540f-a93d-4d2b-9212-bd8a59c2e271\",\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound\",\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 }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/demooborgusnorth/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound\",\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 }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet9946\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"022d8442-daec-468f-91c1-c93e12fb5f61\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet783\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/securityRules/azsmnet783\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"17c2a98b-01d3-4054-9795-844118858b14\\\"\",\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 }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "59509" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:27:58 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "ae7b006d-3e5a-4ad3-b939-fe4bd1a5e3b5", - "f0863910-2246-463b-90cb-bcafa234e8cf", - "e6e8f27c-a2d9-4824-b549-2a61729b0e66", - "2900fa12-003f-4f92-b678-61176b143d6d", - "c9517361-f758-406f-8814-6139b99099a4", - "49cfb165-dcee-43f2-ae1d-4f53348b2bf6" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "9a4e8027-d7ae-44d5-bb6e-1345bc570df2" + "14e17bdf-3c95-4eb0-b53f-27d33acda185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" ], "x-ms-correlation-request-id": [ - "9a4e8027-d7ae-44d5-bb6e-1345bc570df2" + "15c30422-ab07-4c32-a0c0-c69b5d871cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195535Z:9a4e8027-d7ae-44d5-bb6e-1345bc570df2" + "WESTEUROPE:20170801T122759Z:15c30422-ab07-4c32-a0c0-c69b5d871cd9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/a1c67e39-0c3c-4a4a-976a-321f13994a63?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFjNjdlMzktMGMzYy00YTRhLTk3NmEtMzIxZjEzOTk0YTYzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 13 Nov 2015 19:55:34 GMT" + "Tue, 01 Aug 2017 12:28:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "781dcfbb-699b-49a5-adb3-ab5794237df3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "fdfd8a17-8f2a-424e-bfcb-870290787dc1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T122830Z:fdfd8a17-8f2a-424e-bfcb-870290787dc1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2L2RlZmF1bHRTZWN1cml0eVJ1bGVzP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "02aec933-586a-4fc2-b158-71155323567d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:28:30 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "9153b56d-790f-4114-97ed-ea9c906d6716" + "48997515-3d05-4900-b50e-9d79860abc83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "453ce88b-f750-4664-b884-2804cff154ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170801T122831Z:453ce88b-f750-4664-b884-2804cff154ce" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2L2RlZmF1bHRTZWN1cml0eVJ1bGVzL0FsbG93Vm5ldEluQm91bmQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f91e1dac-b10c-4b7e-a27a-fa94323397b1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\\\"\",\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}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 01 Aug 2017 12:28:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"a082f6d2-4399-49f8-8ff2-229aaf1d05e1\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "658b2b43-da93-4ef5-97b8-7ddf5d47128b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14983" ], "x-ms-correlation-request-id": [ - "bb9f1dd3-e970-4ad1-8cae-9c4b7c73c7ed" + "b3b70711-f498-4a68-9913-58d613d5e771" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195546Z:bb9f1dd3-e970-4ad1-8cae-9c4b7c73c7ed" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:45 GMT" + "WESTEUROPE:20170801T122831Z:b3b70711-f498-4a68-9913-58d613d5e771" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/resourceGroups/csmrg6386/providers/Microsoft.Network/networkSecurityGroups/azsmnet9946?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM4Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2503c2d3-e658-4c1f-ac1c-0d24825cbcaa" + "6150a09e-9007-444a-8494-3e6c8fdb186b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "", @@ -778,93 +952,98 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 01 Aug 2017 12:28:31 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operationResults/27906748-a6bc-4695-bbf4-faa131e555ba?api-version=2017-06-01" + ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "ada432fe-0599-42de-9762-823b41e02fec" + "27906748-a6bc-4695-bbf4-faa131e555ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-06-01" + "https://management.azure.com/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/27906748-a6bc-4695-bbf4-faa131e555ba?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "cf7bae55-a802-41ce-84ef-5e1fa059e478" + "768d28c3-1f16-46d1-a061-41dc67907a4f" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195546Z:cf7bae55-a802-41ce-84ef-5e1fa059e478" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:46 GMT" + "WESTEUROPE:20170801T122831Z:768d28c3-1f16-46d1-a061-41dc67907a4f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-06-01", + "RequestUri": "/subscriptions/947d47b4-7883-4bb9-9d85-c5e8e2f572ce/providers/Microsoft.Network/locations/eastus/operations/27906748-a6bc-4695-bbf4-faa131e555ba?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTQ3ZDQ3YjQtNzg4My00YmI5LTlkODUtYzVlOGUyZjU3MmNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjc5MDY3NDgtYTZiYy00Njk1LWJiZjQtZmFhMTMxZTU1NWJhP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/2.0.0.0" + "FxVersion/4.6.25009.03", + "Microsoft.Azure.Management.Network.NetworkManagementClient/13.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c801b940-a368-442c-9533-8c8c5acd5d5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 01 Aug 2017 12:29:01 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "08c8f296-86da-4daa-82f1-26b48daee2be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14982" ], "x-ms-correlation-request-id": [ - "07d757f4-e2ea-4a8e-821c-e279ee2011bc" + "13055462-f7da-40a1-85fb-ea71873a7b93" ], "x-ms-routing-request-id": [ - "WESTUS:20151113T195556Z:07d757f4-e2ea-4a8e-821c-e279ee2011bc" - ], - "Date": [ - "Fri, 13 Nov 2015 19:55:56 GMT" + "WESTEUROPE:20170801T122902Z:13055462-f7da-40a1-85fb-ea71873a7b93" ] }, "StatusCode": 200 @@ -872,13 +1051,13 @@ ], "Names": { "NetworkSecurityGroupWithRulesApiTest": [ - "csmrg7220", - "azsmnet1014", - "azsmnet9774", - "azsmnet5872" + "csmrg6386", + "azsmnet9946", + "azsmnet783", + "azsmnet1469" ] }, "Variables": { - "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" + "SubscriptionId": "947d47b4-7883-4bb9-9d85-c5e8e2f572ce" } -} +} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.PrivateAccessServiceAvailabilityTests/CheckPrivateAccessServiceAvailabilityTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.PrivateAccessServiceAvailabilityTests/CheckPrivateAccessServiceAvailabilityTest.json deleted file mode 100644 index e9189f90594c..000000000000 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.PrivateAccessServiceAvailabilityTests/CheckPrivateAccessServiceAvailabilityTest.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "adbace9a-7a83-4e1e-a0c5-5ea67ac579b0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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\": \"virtualNetworkGateways\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n }\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\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 \"West US\"\r\n ],\r\n \"apiVersions\": [\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 \"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\": \"serviceTunnelServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 08:24:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "dbb94b90-1b82-4ba6-8650-7429978ccad7" - ], - "x-ms-correlation-request-id": [ - "dbb94b90-1b82-4ba6-8650-7429978ccad7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T082443Z:dbb94b90-1b82-4ba6-8650-7429978ccad7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/East%20US/privateAccessServices?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvRWFzdCUyMFVTL3ByaXZhdGVBY2Nlc3NTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "249aad9b-120d-4767-aaa2-1944ff9d5b87" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Storage\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/privateAccessServices/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Network/privateAccessServices\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 08:24:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "04371da9-695d-4860-a311-70808b218257" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "8dd28671-1712-449b-98f1-c091da31c92c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T082444Z:8dd28671-1712-449b-98f1-c091da31c92c" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "2c224e7e-3ef5-431d-a57b-e71f4662e3a6" - } -} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetPrivateAccessTest.json b/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetPrivateAccessTest.json deleted file mode 100644 index e63fbb60071b..000000000000 --- a/src/SDKs/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetPrivateAccessTest.json +++ /dev/null @@ -1,453 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/csmrg823?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2NzbXJnODIzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], - "x-ms-client-request-id": [ - "7df5617c-7779-4496-847d-ce723884ee10" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823\",\r\n \"name\": \"csmrg823\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "176" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "1f6f62ef-4eec-4d41-a2a0-8aa0ed6fb311" - ], - "x-ms-correlation-request-id": [ - "1f6f62ef-4eec-4d41-a2a0-8aa0ed6fb311" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100411Z:1f6f62ef-4eec-4d41-a2a0-8aa0ed6fb311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/westcentralus/privateAccessServices?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9wcml2YXRlQWNjZXNzU2VydmljZXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "657ed6d3-bfe6-4aa2-805c-4ef5b5446094" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Storage\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/privateAccessServices/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Network/privateAccessServices\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9b2c3d08-714f-4ee1-a14a-0714b3380483" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "5a3fb841-5709-40cb-be2c-cd3ce35d4c6a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100412Z:5a3fb841-5709-40cb-be2c-cd3ce35d4c6a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2NzbXJnODIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDUwMDA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateAccessServices\": [\r\n {\r\n \"service\": \"Microsoft.Storage\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet7536\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "535" - ], - "x-ms-client-request-id": [ - "85835cb8-2833-46e1-89e1-63483d6df985" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5000\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000\",\r\n \"etag\": \"W/\\\"6d80c398-4f1a-4ce1-854b-987c95e135b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5eae5dea-3b4a-4af2-a93d-37e1dc9f7127\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7536\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000/subnets/azsmnet7536\",\r\n \"etag\": \"W/\\\"6d80c398-4f1a-4ce1-854b-987c95e135b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateAccessServices\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westcentralus\",\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1378" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "9af6f200-cff0-4cae-b053-96821f7e2466" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/westcentralus/operations/9af6f200-cff0-4cae-b053-96821f7e2466?api-version=2017-06-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "5ba0c887-5a6a-48d7-9ef0-0fc06189e2a3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100416Z:5ba0c887-5a6a-48d7-9ef0-0fc06189e2a3" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/westcentralus/operations/9af6f200-cff0-4cae-b053-96821f7e2466?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzlhZjZmMjAwLWNmZjAtNGNhZS1iMDUzLTk2ODIxZjdlMjQ2Nj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cbeb7b93-1f13-4a69-86f3-da74bc2e5d6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "bf487f42-3574-4c2c-99a4-b597f2ee7084" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100447Z:bf487f42-3574-4c2c-99a4-b597f2ee7084" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2NzbXJnODIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDUwMDA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5000\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000\",\r\n \"etag\": \"W/\\\"574c54ce-1649-4f17-b705-902dd9acd714\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5eae5dea-3b4a-4af2-a93d-37e1dc9f7127\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7536\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000/subnets/azsmnet7536\",\r\n \"etag\": \"W/\\\"574c54ce-1649-4f17-b705-902dd9acd714\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateAccessServices\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westcentralus\",\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"574c54ce-1649-4f17-b705-902dd9acd714\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f67cc013-110a-4045-bc2e-e43bded59c99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "43b9a13c-b4ce-4793-a686-66f3dbaeb808" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100447Z:43b9a13c-b4ce-4793-a686-66f3dbaeb808" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2NzbXJnODIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDUwMDA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f155c5e1-885b-487a-9cf4-74695ea144dc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5000\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000\",\r\n \"etag\": \"W/\\\"574c54ce-1649-4f17-b705-902dd9acd714\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5eae5dea-3b4a-4af2-a93d-37e1dc9f7127\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7536\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000/subnets/azsmnet7536\",\r\n \"etag\": \"W/\\\"574c54ce-1649-4f17-b705-902dd9acd714\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateAccessServices\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westcentralus\",\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"574c54ce-1649-4f17-b705-902dd9acd714\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c35fa7b1-a525-4bc4-bd77-7a6e7a701eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "0b324e5b-7d0f-4ba9-936f-cff1d931f8d4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100447Z:0b324e5b-7d0f-4ba9-936f-cff1d931f8d4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000/subnets/azsmnet7536?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2NzbXJnODIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDUwMDAvc3VibmV0cy9henNtbmV0NzUzNj9hcGktdmVyc2lvbj0yMDE3LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34533ef1-f2eb-40cb-ab59-319a7df77402" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/11.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7536\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/csmrg823/providers/Microsoft.Network/virtualNetworks/azsmnet5000/subnets/azsmnet7536\",\r\n \"etag\": \"W/\\\"574c54ce-1649-4f17-b705-902dd9acd714\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateAccessServices\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westcentralus\",\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Jul 2017 10:04:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"574c54ce-1649-4f17-b705-902dd9acd714\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "409958c5-8ddb-41a3-bb56-70d41e6eba8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "ad425c40-3c1e-4d76-8f46-36bd5d3b2a85" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170706T100447Z:ad425c40-3c1e-4d76-8f46-36bd5d3b2a85" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "SubnetPrivateAccessTest": [ - "csmrg823", - "azsmnet5000", - "azsmnet7536" - ] - }, - "Variables": { - "SubscriptionId": "2c224e7e-3ef5-431d-a57b-e71f4662e3a6" - } -} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/SDKs/Network/Network.Tests/Tests/GatewayOperationsTests.cs index 9460d977416a..c6b403fc1a15 100644 --- a/src/SDKs/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/SDKs/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -827,11 +827,16 @@ public void VirtualNetworkGatewayConnectionOperationsApisTest() Assert.Equal(4, getVirtualNetworkGatewayConnectionResponse.RoutingWeight); Assert.Equal("xyz", getVirtualNetworkGatewayConnectionResponse.SharedKey); - // 4. ListVitualNetworkGatewayConnections API + // 4A. ListVirtualNetworkGatewayConnections API var listVirtualNetworkGatewayConectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.List(resourceGroupName); Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); Assert.Equal(1, listVirtualNetworkGatewayConectionResponse.Count()); + // 4B. VirtualNetworkGateway ListConnections API + var virtualNetworkGatewayListConnectionsResponse = networkManagementClient.VirtualNetworkGateways.ListConnections(resourceGroupName, virtualNetworkGatewayName); + Assert.Equal(1, virtualNetworkGatewayListConnectionsResponse.Count()); + Assert.Equal(VirtualNetworkGatewayConnectionName, virtualNetworkGatewayListConnectionsResponse.First().Name); + // 5A. DeleteVirtualNetworkGatewayConnection API networkManagementClient.VirtualNetworkGatewayConnections.Delete(resourceGroupName, VirtualNetworkGatewayConnectionName); diff --git a/src/SDKs/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/SDKs/Network/Network.Tests/Tests/LoadBalancerTests.cs index cc2bd920ab80..458a94499392 100644 --- a/src/SDKs/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/SDKs/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -62,7 +62,8 @@ public void LoadBalancerApiTest() var probeName = TestUtilities.GenerateName(); var inboundNatRule1Name = TestUtilities.GenerateName(); var inboundNatRule2Name = TestUtilities.GenerateName(); - + var inboundNatRule3Name = TestUtilities.GenerateName(); + // Populate the loadBalancerCreateOrUpdateParameter var loadBalancer = new LoadBalancer() { @@ -197,10 +198,104 @@ public void LoadBalancerApiTest() // Verify List LoadBalancer subscription var listLoadBalancerSubscription = networkManagementClient.LoadBalancers.ListAll(); - Assert.NotEqual(1, listLoadBalancerSubscription.Count()); + Assert.NotEqual(0, listLoadBalancerSubscription.Count()); + Assert.Collection(listLoadBalancerSubscription, item => Assert.Equal(lbName, item.Name)); Assert.NotNull(listLoadBalancerSubscription.First().Name); Assert.NotNull(listLoadBalancerSubscription.First().Etag); + // Verify List BackendAddressPools in LoadBalancer + var listLoadBalancerBackendAddressPools = networkManagementClient.LoadBalancerBackendAddressPools.List(resourceGroupName, lbName); + Assert.Equal(1, listLoadBalancerBackendAddressPools.Count()); + Assert.Equal(backEndAddressPoolName, listLoadBalancerBackendAddressPools.First().Name); + Assert.NotNull(listLoadBalancerBackendAddressPools.First().Etag); + + // Verify Get BackendAddressPool in LoadBalancer + var getLoadBalancerBackendAddressPool = networkManagementClient.LoadBalancerBackendAddressPools.Get(resourceGroupName, lbName, backEndAddressPoolName); + Assert.Equal(backEndAddressPoolName, getLoadBalancerBackendAddressPool.Name); + Assert.NotNull(getLoadBalancerBackendAddressPool.Etag); + + // Verify List FrontendIPConfigurations in LoadBalancer + var listLoadBalancerFrontendIPConfigurations = networkManagementClient.LoadBalancerFrontendIPConfigurations.List(resourceGroupName, lbName); + Assert.Equal(1, listLoadBalancerFrontendIPConfigurations.Count()); + Assert.Equal(frontendIpConfigName, listLoadBalancerFrontendIPConfigurations.First().Name); + Assert.NotNull(listLoadBalancerFrontendIPConfigurations.First().Etag); + + // Verify Get FrontendIPConfiguration in LoadBalancer + var getLoadBalancerFrontendIPConfiguration = networkManagementClient.LoadBalancerFrontendIPConfigurations.Get(resourceGroupName, lbName, frontendIpConfigName); + Assert.Equal(frontendIpConfigName, getLoadBalancerFrontendIPConfiguration.Name); + Assert.NotNull(getLoadBalancerFrontendIPConfiguration.Etag); + + // Verify List LoadBalancingRules in LoadBalancer + var listLoadBalancerLoadBalancingRules = networkManagementClient.LoadBalancerLoadBalancingRules.List(resourceGroupName, lbName); + Assert.Equal(1, listLoadBalancerLoadBalancingRules.Count()); + Assert.Equal(loadBalancingRuleName, listLoadBalancerLoadBalancingRules.First().Name); + Assert.NotNull(listLoadBalancerLoadBalancingRules.First().Etag); + + // Verify Get LoadBalancingRule in LoadBalancer + var getLoadBalancerLoadBalancingRule = networkManagementClient.LoadBalancerLoadBalancingRules.Get(resourceGroupName, lbName, loadBalancingRuleName); + Assert.Equal(loadBalancingRuleName, getLoadBalancerLoadBalancingRule.Name); + Assert.NotNull(getLoadBalancerLoadBalancingRule.Etag); + + // Verify List NetworkInterfaces in LoadBalancer + var listLoadBalancerNetworkInterfaces = networkManagementClient.LoadBalancerNetworkInterfaces.List(resourceGroupName, lbName); + Assert.Equal(0, listLoadBalancerNetworkInterfaces.Count()); + + // Verify List Probes in LoadBalancer + var listLoadBalancerProbes = networkManagementClient.LoadBalancerProbes.List(resourceGroupName, lbName); + Assert.Equal(1, listLoadBalancerProbes.Count()); + Assert.Equal(probeName, listLoadBalancerProbes.First().Name); + Assert.NotNull(listLoadBalancerProbes.First().Etag); + + // Verify Get Probe in LoadBalancer + var getLoadBalancerProbe = networkManagementClient.LoadBalancerProbes.Get(resourceGroupName, lbName, probeName); + Assert.Equal(probeName, getLoadBalancerProbe.Name); + Assert.NotNull(getLoadBalancerProbe.Etag); + + // Prepare the third InboundNatRule + var inboundNatRule3Params = new InboundNatRule() + { + FrontendIPConfiguration = new SubResource() + { + Id = TestHelper.GetChildLbResourceId(networkManagementClient.SubscriptionId, + resourceGroupName, lbName, "frontendIPConfigurations", frontendIpConfigName) + }, + Protocol = TransportProtocol.Tcp, + FrontendPort = 3391, + BackendPort = 3389, + IdleTimeoutInMinutes = 15, + EnableFloatingIP = false, + }; + + // Verify Put InboundNatRule in LoadBalancer + var putInboundNatRule = networkManagementClient.InboundNatRules.CreateOrUpdate(resourceGroupName, lbName, inboundNatRule3Name, inboundNatRule3Params); + Assert.Equal(inboundNatRule3Name, putInboundNatRule.Name); + Assert.Equal(TransportProtocol.Tcp, putInboundNatRule.Protocol); + Assert.Equal(3391, putInboundNatRule.FrontendPort); + Assert.Equal(3389, putInboundNatRule.BackendPort); + Assert.Equal(15, putInboundNatRule.IdleTimeoutInMinutes); + Assert.Equal(false, putInboundNatRule.EnableFloatingIP); + + // Verify Get InboundNatRule in LoadBalancer + var getInboundNatRule = networkManagementClient.InboundNatRules.Get(resourceGroupName, lbName, inboundNatRule3Name); + Assert.Equal(inboundNatRule3Name, getInboundNatRule.Name); + Assert.Equal(TransportProtocol.Tcp, getInboundNatRule.Protocol); + Assert.Equal(3391, getInboundNatRule.FrontendPort); + Assert.Equal(3389, getInboundNatRule.BackendPort); + Assert.Equal(15, getInboundNatRule.IdleTimeoutInMinutes); + Assert.Equal(false, getInboundNatRule.EnableFloatingIP); + + // Verify List InboundNatRules in LoadBalancer + var listInboundNatRules = networkManagementClient.InboundNatRules.List(resourceGroupName, lbName); + Assert.Equal(3, listInboundNatRules.Count()); + Assert.Collection(listInboundNatRules, + item => Assert.Equal(inboundNatRule1Name, item.Name), + item => Assert.Equal(inboundNatRule2Name, item.Name), + item => Assert.Equal(inboundNatRule3Name, item.Name) + ); + + // Delete InboundNatRule in LoadBalancer + networkManagementClient.InboundNatRules.Delete(resourceGroupName, lbName, inboundNatRule3Name); + // Delete LoadBalancer networkManagementClient.LoadBalancers.Delete(resourceGroupName, lbName); @@ -1192,6 +1287,10 @@ public void LoadBalancerApiNicAssociationTest() Assert.Equal(nic1.IpConfigurations[0].Id, getLoadBalancer.InboundNatRules.First().BackendIPConfiguration.Id); Assert.Equal(nic3.IpConfigurations[0].Id, getLoadBalancer.InboundNatRules[1].BackendIPConfiguration.Id); + // Verify List NetworkInterfaces in LoadBalancer// Verify List NetworkInterfaces in LoadBalancer + var listLoadBalancerNetworkInterfaces = networkManagementClient.LoadBalancerNetworkInterfaces.List(resourceGroupName, lbName); + Assert.Equal(3, listLoadBalancerNetworkInterfaces.Count()); + // Delete LoadBalancer networkManagementClient.LoadBalancers.Delete(resourceGroupName, lbName); diff --git a/src/SDKs/Network/Network.Tests/Tests/NetworkInterfaceTests.cs b/src/SDKs/Network/Network.Tests/Tests/NetworkInterfaceTests.cs index d35ae2970e2f..3dc22f523508 100644 --- a/src/SDKs/Network/Network.Tests/Tests/NetworkInterfaceTests.cs +++ b/src/SDKs/Network/Network.Tests/Tests/NetworkInterfaceTests.cs @@ -154,6 +154,21 @@ public void NetworkInterfaceApiTest() Assert.Equal(getSubnetResponse.Id, getNicResponse.IpConfigurations[0].Subnet.Id); Assert.NotNull(getNicResponse.ResourceGuid); + // Verify List IpConfigurations in NetworkInterface + var listNicIpConfigurations = networkManagementClient.NetworkInterfaceIPConfigurations.List(resourceGroupName, nicName); + Assert.Equal(1, listNicIpConfigurations.Count()); + Assert.Equal(ipConfigName, listNicIpConfigurations.First().Name); + Assert.NotNull(listNicIpConfigurations.First().Etag); + + // Verify Get IpConfiguration in NetworkInterface + var getNicIpConfiguration = networkManagementClient.NetworkInterfaceIPConfigurations.Get(resourceGroupName, nicName, ipConfigName); + Assert.Equal(ipConfigName, getNicIpConfiguration.Name); + Assert.NotNull(getNicIpConfiguration.Etag); + + // Verify List LoadBalancers in NetworkInterface + var listNicLoadBalancers = networkManagementClient.NetworkInterfaceLoadBalancers.List(resourceGroupName, nicName); + Assert.Equal(0, listNicLoadBalancers.Count()); + // Get all Nics var getListNicResponse = networkManagementClient.NetworkInterfaces.List(resourceGroupName); Assert.Equal(1, getListNicResponse.Count()); diff --git a/src/SDKs/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs b/src/SDKs/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs index 4441719ec9b3..cd0f42b93f3a 100644 --- a/src/SDKs/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs +++ b/src/SDKs/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs @@ -226,6 +226,14 @@ public void NetworkSecurityGroupWithRulesApiTest() Assert.Equal("*", getNsgResponse.SecurityRules[1].SourceAddressPrefix); Assert.Equal("656", getNsgResponse.SecurityRules[1].SourcePortRange); + // List Default Security Groups + var listDefaultSecurityGroups = networkManagementClient.DefaultSecurityRules.List(resourceGroupName, networkSecurityGroupName); + Assert.NotEqual(0, listDefaultSecurityGroups.Count()); + + // Get Defaul Security Group + var getDefaultSecurityGroups = networkManagementClient.DefaultSecurityRules.Get(resourceGroupName, networkSecurityGroupName, listDefaultSecurityGroups.First().Name); + Assert.Equal(listDefaultSecurityGroups.First().Name, getDefaultSecurityGroups.Name); + // Delete NSG networkManagementClient.NetworkSecurityGroups.Delete(resourceGroupName, networkSecurityGroupName); diff --git a/src/SDKs/Network/Network.Tests/Tests/PrivateAccessServiceAvailabilityTests.cs b/src/SDKs/Network/Network.Tests/Tests/PrivateAccessServiceAvailabilityTests.cs deleted file mode 100644 index d90a997aef48..000000000000 --- a/src/SDKs/Network/Network.Tests/Tests/PrivateAccessServiceAvailabilityTests.cs +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. - -namespace Networks.Tests -{ - using System.Collections.Generic; - using System.Linq; - using System.Net; - using Microsoft.Azure.Management.Network; - using Microsoft.Azure.Management.Network.Models; - using Microsoft.Azure.Management.Resources; - using Microsoft.Azure.Management.Resources.Models; - using Microsoft.Azure.Test; - using Networks.Tests.Helpers; - using ResourceGroups.Tests; - using Xunit; - using Microsoft.Rest.ClientRuntime.Azure.TestFramework; - - public class PrivateAccessServiceAvailabilityTests - { - [Fact] - public void CheckPrivateAccessServiceAvailabilityTest() - { - var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - var handler2 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - using (MockContext context = MockContext.Start(this.GetType().FullName)) - { - - var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(context, handler1, true); - var networkManagementClient = NetworkManagementTestUtilities.GetNetworkManagementClientWithHandler(context, handler2); - - var location = NetworkManagementTestUtilities.GetResourceLocation(resourcesClient, "Microsoft.Network/virtualNetworks"); - - // Check Private Access Services availability API - var responseAvailable = networkManagementClient.AvailablePrivateAccessServices.List(location); - Assert.NotNull(responseAvailable); - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/Network/Network.Tests/Tests/SubnetTests.cs b/src/SDKs/Network/Network.Tests/Tests/SubnetTests.cs index d86138c2191b..d7c2738c0eee 100644 --- a/src/SDKs/Network/Network.Tests/Tests/SubnetTests.cs +++ b/src/SDKs/Network/Network.Tests/Tests/SubnetTests.cs @@ -206,86 +206,6 @@ public void SubnetResourceNavigationLinksTest() } } - [Fact] - public void SubnetPrivateAccessTest() - { - var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - var handler2 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - using (MockContext context = MockContext.Start(this.GetType().FullName)) - { - var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(context, handler1, true); - var networkManagementClient = NetworkManagementTestUtilities.GetNetworkManagementClientWithHandler(context, handler2); - - // Temporary hardcoded location as auto-selected eastus doesn't support the feature completely - var location = "westcentralus"; - - string resourceGroupName = TestUtilities.GenerateName("csmrg"); - resourcesClient.ResourceGroups.CreateOrUpdate(resourceGroupName, - new ResourceGroup - { - Location = location - }); - - string vnetName = TestUtilities.GenerateName(); - string subnet1Name = TestUtilities.GenerateName(); - - List availableServices = - networkManagementClient.AvailablePrivateAccessServices.List(location).ToList(); - string serviceName = availableServices[0].Name; - - var vnet = new VirtualNetwork() - { - Location = location, - - AddressSpace = new AddressSpace() - { - AddressPrefixes = new List() - { - "10.0.0.0/16", - } - }, - DhcpOptions = new DhcpOptions() - { - DnsServers = new List() - { - "10.1.1.1", - "10.1.2.4" - } - }, - Subnets = new List() - { - new Subnet() - { - Name = subnet1Name, - AddressPrefix = "10.0.0.0/24", - PrivateAccessServices = new List() - { - new PrivateAccessServicePropertiesFormat() - { - Service = serviceName - } - } - } - } - }; - - var putVnetResponse = networkManagementClient.VirtualNetworks.CreateOrUpdate(resourceGroupName, vnetName, vnet); - - #region Verification - - var getVnetResponse = networkManagementClient.VirtualNetworks.Get(resourceGroupName, vnetName); - - var getSubnetResponse = networkManagementClient.Subnets.Get(resourceGroupName, vnetName, subnet1Name); - - // Verify the getSubnetResponse - Assert.True(AreSubnetsEqual(getVnetResponse.Subnets[0], getSubnetResponse)); - Assert.Equal(serviceName, getSubnetResponse.PrivateAccessServices[0].Service); - - #endregion - } - } - private bool AreSubnetsEqual(Subnet subnet1, Subnet subnet2) { return subnet1.Id == subnet2.Id &&